The patch titled fix section mismatch in pm2fb.o has been added to the -mm tree. Its filename is fix-section-mismatch-in-pm2fbo.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this From: Darren Jenkins <darrenrjenkins@xxxxxxxxx> WARNING: drivers/video/pm2fb.o - Section mismatch: reference to .init.data: from .text after 'pm2fb_set_par' (at offset 0xd5d) WARNING: drivers/video/pm2fb.o - Section mismatch: reference to .init.data: from .text after 'pm2fb_set_par' (at offset 0xd82) They are caused because pm2fb_set_par() uses lowhsync and lowvsync which are marked __devinitdata. Signed-off-by: Darren Jenkins <darrenrjenkins@xxxxxxxxx> Signed-off-by: Adrian Bunk <bunk@xxxxxxxxx> Cc: "Antonino A. Daplas" <adaplas@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/video/pm2fb.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/video/pm2fb.c~fix-section-mismatch-in-pm2fbo drivers/video/pm2fb.c --- devel/drivers/video/pm2fb.c~fix-section-mismatch-in-pm2fbo 2006-04-18 23:59:03.000000000 -0700 +++ devel-akpm/drivers/video/pm2fb.c 2006-04-18 23:59:03.000000000 -0700 @@ -73,8 +73,8 @@ static char *mode __devinitdata = NULL; * these flags allow the user to specify that requests for +ve sync * should be silently turned in -ve sync. */ -static int lowhsync __devinitdata = 0; -static int lowvsync __devinitdata = 0; +static int lowhsync; +static int lowvsync; /* * The hardware state of the graphics card that isn't part of the _ Patches currently in -mm which might be from darrenrjenkins@xxxxxxxxx are fix-section-mismatch-in-pm2fbo.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html