The patch titled i810fb: fix i810_check_params section mismatch has been added to the -mm tree. Its filename is i810fb-fix-i810_check_params-section-mismatch.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: i810fb: fix i810_check_params section mismatch From: Jean Delvare <khali@xxxxxxxxxxxx> WARNING: drivers/video/i810/i810fb.o - Section mismatch: reference to .init.data: from .text between 'i810_check_params' (at offset 0x1123) and 'encode_fix' yres cannot be declared __devinitdata as it is used in i810_check_params(), which isn't __devinit. Signed-off-by: Jean Delvare <khali@xxxxxxxxxxxx> Acked-by: James Simmons <jsimmons@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/video/i810/i810_main.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/video/i810/i810_main.c~i810fb-fix-i810_check_params-section-mismatch drivers/video/i810/i810_main.c --- a/drivers/video/i810/i810_main.c~i810fb-fix-i810_check_params-section-mismatch +++ a/drivers/video/i810/i810_main.c @@ -142,7 +142,7 @@ static int hsync2 __devinitdata; static int vsync1 __devinitdata; static int vsync2 __devinitdata; static int xres __devinitdata; -static int yres __devinitdata; +static int yres; static int vyres __devinitdata; static int sync __devinitdata; static int extvga __devinitdata; _ Patches currently in -mm which might be from khali@xxxxxxxxxxxx are origin.patch git-input.patch parport_pc-fix-parport_pc_probe_port-section-warning.patch i810fb-fix-i810_check_params-section-mismatch.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