From: Andrew Morton drivers/mtd/devices/docprobe.c: In function `DoC_Probe': drivers/mtd/devices/docprobe.c:338: warning: assignment from incompatible pointer type drivers/mtd/devices/docprobe.c:341: warning: assignment from incompatible pointer type Cc: David Woodhouse Signed-off-by: Andrew Morton --- drivers/mtd/devices/docprobe.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/mtd/devices/docprobe.c~git-mtd-symbol_get-fix drivers/mtd/devices/docprobe.c --- devel/drivers/mtd/devices/docprobe.c~git-mtd-symbol_get-fix 2006-05-19 18:05:14.000000000 -0700 +++ devel-akpm/drivers/mtd/devices/docprobe.c 2006-05-19 18:05:26.000000000 -0700 @@ -335,10 +335,10 @@ static void __init DoC_Probe(unsigned lo #ifdef CONFIG_MODULES if (im_funcname && !initroutine) - initroutine = symbol_get(im_funcname); + initroutine = __symbol_get(im_funcname); if (im_funcname && !initroutine) { request_module(im_modname); - initroutine = symbol_get(im_funcname); + initroutine = __symbol_get(im_funcname); } #endif if (initroutine) { _