Commit 54f4dedb authored by Paul Gortmaker's avatar Paul Gortmaker

drivers/leds: Add module.h to files using it implicitly

A pending cleanup will mean that module.h won't be implicitly
everywhere anymore.  Make sure the modular drivers in the leds
dir are actually calling out for <module.h> explicitly in advance.
Signed-off-by: default avatarPaul Gortmaker <paul.gortmaker@windriver.com>
parent 5d76fc21
...@@ -14,6 +14,7 @@ ...@@ -14,6 +14,7 @@
#include <linux/acpi.h> #include <linux/acpi.h>
#include <linux/leds.h> #include <linux/leds.h>
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/module.h>
MODULE_AUTHOR("Louis Davis/Jim Dailey"); MODULE_AUTHOR("Louis Davis/Jim Dailey");
MODULE_DESCRIPTION("Dell LED Control Driver"); MODULE_DESCRIPTION("Dell LED Control Driver");
......
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/workqueue.h> #include <linux/workqueue.h>
#include <linux/mfd/88pm860x.h> #include <linux/mfd/88pm860x.h>
#include <linux/module.h>
#define LED_PWM_SHIFT (3) #define LED_PWM_SHIFT (3)
#define LED_PWM_MASK (0x1F) #define LED_PWM_MASK (0x1F)
......
...@@ -14,6 +14,7 @@ ...@@ -14,6 +14,7 @@
#include <linux/mfd/asic3.h> #include <linux/mfd/asic3.h>
#include <linux/mfd/core.h> #include <linux/mfd/core.h>
#include <linux/module.h>
/* /*
* The HTC ASIC3 LED GPIOs are inputs, not outputs. * The HTC ASIC3 LED GPIOs are inputs, not outputs.
......
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
#include <linux/io.h> #include <linux/io.h>
#include <linux/atmel_pwm.h> #include <linux/atmel_pwm.h>
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/module.h>
struct pwmled { struct pwmled {
......
...@@ -19,6 +19,7 @@ ...@@ -19,6 +19,7 @@
#include <linux/init.h> #include <linux/init.h>
#include <linux/platform_device.h> #include <linux/platform_device.h>
#include <linux/leds.h> #include <linux/leds.h>
#include <linux/module.h>
#include <mach/hardware.h> #include <mach/hardware.h>
#include <asm/io.h> #include <asm/io.h>
......
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
#include <linux/of_gpio.h> #include <linux/of_gpio.h>
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/workqueue.h> #include <linux/workqueue.h>
#include <linux/module.h>
#include <asm/gpio.h> #include <asm/gpio.h>
......
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
#include <linux/led-lm3530.h> #include <linux/led-lm3530.h>
#include <linux/types.h> #include <linux/types.h>
#include <linux/regulator/consumer.h> #include <linux/regulator/consumer.h>
#include <linux/module.h>
#define LM3530_LED_DEV "lcd-backlight" #define LM3530_LED_DEV "lcd-backlight"
#define LM3530_NAME "lm3530-led" #define LM3530_NAME "lm3530-led"
......
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
#include <linux/kernel.h> #include <linux/kernel.h>
#include <linux/init.h> #include <linux/init.h>
#include <linux/module.h>
#include <linux/device.h> #include <linux/device.h>
#include <linux/leds.h> #include <linux/leds.h>
......
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
#include <linux/delay.h> #include <linux/delay.h>
#include <linux/gpio.h> #include <linux/gpio.h>
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/module.h>
struct lt3593_led_data { struct lt3593_led_data {
struct led_classdev cdev; struct led_classdev cdev;
......
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
#include <asm/io.h> #include <asm/io.h>
#include <linux/nsc_gpio.h> #include <linux/nsc_gpio.h>
#include <linux/scx200_gpio.h> #include <linux/scx200_gpio.h>
#include <linux/module.h>
#define DRVNAME "net48xx-led" #define DRVNAME "net48xx-led"
#define NET48XX_ERROR_LED_GPIO 20 #define NET48XX_ERROR_LED_GPIO 20
......
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
#include <linux/leds.h> #include <linux/leds.h>
#include <linux/platform_device.h> #include <linux/platform_device.h>
#include <linux/gpio.h> #include <linux/gpio.h>
#include <linux/module.h>
#include <asm/geode.h> #include <asm/geode.h>
......
...@@ -28,6 +28,7 @@ ...@@ -28,6 +28,7 @@
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/gpio.h> #include <linux/gpio.h>
#include <linux/leds.h> #include <linux/leds.h>
#include <linux/module.h>
#include <mach/leds-ns2.h> #include <mach/leds-ns2.h>
/* /*
......
...@@ -17,6 +17,7 @@ ...@@ -17,6 +17,7 @@
#include <linux/leds.h> #include <linux/leds.h>
#include <linux/gpio.h> #include <linux/gpio.h>
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/module.h>
#include <mach/hardware.h> #include <mach/hardware.h>
#include <mach/regs-gpio.h> #include <mach/regs-gpio.h>
......
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
#include <linux/mfd/wm831x/core.h> #include <linux/mfd/wm831x/core.h>
#include <linux/mfd/wm831x/pdata.h> #include <linux/mfd/wm831x/pdata.h>
#include <linux/mfd/wm831x/status.h> #include <linux/mfd/wm831x/status.h>
#include <linux/module.h>
struct wm831x_status { struct wm831x_status {
......
...@@ -17,6 +17,7 @@ ...@@ -17,6 +17,7 @@
#include <linux/mfd/wm8350/pmic.h> #include <linux/mfd/wm8350/pmic.h>
#include <linux/regulator/consumer.h> #include <linux/regulator/consumer.h>
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/module.h>
/* Microamps */ /* Microamps */
static const int isink_cur[] = { static const int isink_cur[] = {
......
...@@ -17,6 +17,7 @@ ...@@ -17,6 +17,7 @@
#include <linux/err.h> #include <linux/err.h>
#include <asm/io.h> #include <asm/io.h>
#include <linux/scx200_gpio.h> #include <linux/scx200_gpio.h>
#include <linux/module.h>
#define DRVNAME "wrap-led" #define DRVNAME "wrap-led"
#define WRAP_POWER_LED_GPIO 2 #define WRAP_POWER_LED_GPIO 2
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment