The patch titled xilinxfb:Remove __initdata from xilinx_fb_fix and xilinx_fb_var has been added to the -mm tree. Its filename is xilinxfbremove-__initdata-from-xilinx_fb_fix-and-xilinx_fb_var.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: xilinxfb:Remove __initdata from xilinx_fb_fix and xilinx_fb_var From: Grant Likely <grant.likely@xxxxxxxxxxxx> xilinxfb_drv_probe refers to both tables, but it cannot be initdata. Signed-off-by: Grant Likely <grant.likely@xxxxxxxxxxxx> Cc: Andrei Konovalov <akonovalov@xxxxxxxxxxxxx> Signed-off-by: Antonino Daplas <adaplas@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/video/xilinxfb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/video/xilinxfb.c~xilinxfbremove-__initdata-from-xilinx_fb_fix-and-xilinx_fb_var drivers/video/xilinxfb.c --- a/drivers/video/xilinxfb.c~xilinxfbremove-__initdata-from-xilinx_fb_fix-and-xilinx_fb_var +++ a/drivers/video/xilinxfb.c @@ -79,7 +79,7 @@ /* * Here are the default fb_fix_screeninfo and fb_var_screeninfo structures */ -static struct fb_fix_screeninfo xilinx_fb_fix __initdata = { +static struct fb_fix_screeninfo xilinx_fb_fix = { .id = "Xilinx", .type = FB_TYPE_PACKED_PIXELS, .visual = FB_VISUAL_TRUECOLOR, @@ -88,7 +88,7 @@ static struct fb_fix_screeninfo xilinx_f .accel = FB_ACCEL_NONE }; -static struct fb_var_screeninfo xilinx_fb_var __initdata = { +static struct fb_var_screeninfo xilinx_fb_var = { .xres = XRES, .yres = YRES, .xres_virtual = XRES_VIRTUAL, _ Patches currently in -mm which might be from grant.likely@xxxxxxxxxxxx are xilinxfbremove-__initdata-from-xilinx_fb_fix-and-xilinx_fb_var.patch xilinxfb-dont-bail-if-the-xilinxfb-platform-device-doesnt-have-any-pdata.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