From: Trent Piepho Make the mtd sub-system work with changes to __symbol_get(). mtd calls __symbol_get() directly, rather than through the symbol_get() macro because it uses a string it created with sprintf to specify the symbol to attach to. It needs to be updated to supply THIS_MODULE as the user parameter added to __symbol_get(). Signed-off-by: Trent Piepho Cc: David Woodhouse Cc: Rusty Russell Signed-off-by: Andrew Morton --- drivers/mtd/chips/gen_probe.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/mtd/chips/gen_probe.c~update-mtd-use-of-symbol_getput drivers/mtd/chips/gen_probe.c --- a/drivers/mtd/chips/gen_probe.c~update-mtd-use-of-symbol_getput +++ a/drivers/mtd/chips/gen_probe.c @@ -211,10 +211,10 @@ static inline struct mtd_info *cfi_cmdse sprintf(probename, MODULE_SYMBOL_PREFIX "cfi_cmdset_%4.4X", type); - probe_function = __symbol_get(probename); + probe_function = __symbol_get(probename, THIS_MODULE); if (!probe_function) { request_module(probename + sizeof(MODULE_SYMBOL_PREFIX) - 1); - probe_function = __symbol_get(probename); + probe_function = __symbol_get(probename, THIS_MODULE); } if (probe_function) { _