The patch titled leds: add missing include of linux/module.h has been removed from the -mm tree. Its filename was leds-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: leds: add missing include of linux/module.h From: Axel Lin <axel.lin@xxxxxxxxx> Add missing include of linux/module.h for drivers that use interfaces from linux/module.h. This patch fixes build errors. Signed-off-by: Axel Lin <axel.lin@xxxxxxxxx> Cc: Jonathan McDowell <noodles@xxxxxxxx> Acked-by: Kristoffer Ericson <kristoffer.ericson@xxxxxxxxx> Cc: Magnus Damm <damm@xxxxxxxxxxxxx> Cc: Richard Purdie <rpurdie@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/leds/leds-ams-delta.c | 1 + drivers/leds/leds-hp6xx.c | 1 + 2 files changed, 2 insertions(+) diff -puN drivers/leds/leds-ams-delta.c~leds-add-missing-include-of-linux-moduleh drivers/leds/leds-ams-delta.c --- a/drivers/leds/leds-ams-delta.c~leds-add-missing-include-of-linux-moduleh +++ a/drivers/leds/leds-ams-delta.c @@ -8,6 +8,7 @@ * published by the Free Software Foundation. */ +#include <linux/module.h> #include <linux/kernel.h> #include <linux/init.h> #include <linux/platform_device.h> diff -puN drivers/leds/leds-hp6xx.c~leds-add-missing-include-of-linux-moduleh drivers/leds/leds-hp6xx.c --- a/drivers/leds/leds-hp6xx.c~leds-add-missing-include-of-linux-moduleh +++ a/drivers/leds/leds-hp6xx.c @@ -10,6 +10,7 @@ * published by the Free Software Foundation. */ +#include <linux/module.h> #include <linux/kernel.h> #include <linux/init.h> #include <linux/platform_device.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