The patch titled drivers/video/backlight/ep93xx_bl.c: add missing include of linux/module.h has been removed from the -mm tree. Its filename was drivers-video-backlight-ep93xx_blc-add-missing-include-of-linux-moduleh.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: drivers/video/backlight/ep93xx_bl.c: add missing include of linux/module.h From: Axel Lin <axel.lin@xxxxxxxxx> ep93xx_bl.c uses interfaces from linux/module.h, so it should include that file. This patch fixes below build errors. CC [M] drivers/video/backlight/ep93xx_bl.o drivers/video/backlight/ep93xx_bl.c:138: error: 'THIS_MODULE' undeclared here (not in a function) drivers/video/backlight/ep93xx_bl.c:158: error: expected declaration specifiers or '...' before string constant drivers/video/backlight/ep93xx_bl.c:158: warning: data definition has no type or storage class drivers/video/backlight/ep93xx_bl.c:158: warning: type defaults to 'int' in declaration of 'MODULE_DESCRIPTION' drivers/video/backlight/ep93xx_bl.c:158: warning: function declaration isn't a prototype drivers/video/backlight/ep93xx_bl.c:159: error: expected declaration specifiers or '...' before string constant drivers/video/backlight/ep93xx_bl.c:159: warning: data definition has no type or storage class drivers/video/backlight/ep93xx_bl.c:159: warning: type defaults to 'int' in declaration of 'MODULE_AUTHOR' drivers/video/backlight/ep93xx_bl.c:159: warning: function declaration isn't a prototype drivers/video/backlight/ep93xx_bl.c:160: error: expected declaration specifiers or '...' before string constant drivers/video/backlight/ep93xx_bl.c:160: warning: data definition has no type or storage class drivers/video/backlight/ep93xx_bl.c:160: warning: type defaults to 'int' in declaration of 'MODULE_LICENSE' drivers/video/backlight/ep93xx_bl.c:160: warning: function declaration isn't a prototype drivers/video/backlight/ep93xx_bl.c:161: error: expected declaration specifiers or '...' before string constant drivers/video/backlight/ep93xx_bl.c:161: warning: data definition has no type or storage class drivers/video/backlight/ep93xx_bl.c:161: warning: type defaults to 'int' in declaration of 'MODULE_ALIAS' drivers/video/backlight/ep93xx_bl.c:161: warning: function declaration isn't a prototype Signed-off-by: Axel Lin <axel.lin@xxxxxxxxx> Acked-by: H Hartley Sweeten <hsweeten@xxxxxxxxxxxxxxxxxxx> Cc: Ryan Mallon <rmallon@xxxxxxxxx> Cc: Richard Purdie <rpurdie@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/video/backlight/ep93xx_bl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/video/backlight/ep93xx_bl.c~drivers-video-backlight-ep93xx_blc-add-missing-include-of-linux-moduleh drivers/video/backlight/ep93xx_bl.c --- a/drivers/video/backlight/ep93xx_bl.c~drivers-video-backlight-ep93xx_blc-add-missing-include-of-linux-moduleh +++ a/drivers/video/backlight/ep93xx_bl.c @@ -11,7 +11,7 @@ * BRIGHT, on the Cirrus EP9307, EP9312, and EP9315 processors. */ - +#include <linux/module.h> #include <linux/platform_device.h> #include <linux/io.h> #include <linux/fb.h> _ Patches currently in -mm which might be from axel.lin@xxxxxxxxx are origin.patch linux-next.patch leds-renesas-tpu-led-driver-v2-fix.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