diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2023-10-16 19:10:05 +0300 |
---|---|---|
committer | Lee Jones <lee@kernel.org> | 2023-11-01 11:29:24 +0000 |
commit | 2038d3fdc7434d522369c58cb7a4acd5315eebec (patch) | |
tree | b496f4041197a8984f6e07e386b01aedcbdc9e76 | |
parent | 7b2d8a059c77344eca0f5281f97224d1accfb88a (diff) |
leds: gpio: Update headers
Include headers which we are direct users of, no need
to have proxies.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20231016161005.1471768-6-andriy.shevchenko@linux.intel.com
Signed-off-by: Lee Jones <lee@kernel.org>
-rw-r--r-- | drivers/leds/leds-gpio.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/leds/leds-gpio.c b/drivers/leds/leds-gpio.c index d6e8298ffb3e..710c319ad312 100644 --- a/drivers/leds/leds-gpio.c +++ b/drivers/leds/leds-gpio.c @@ -6,17 +6,21 @@ * Raphael Assenat <raph@8d.com> * Copyright (C) 2008 Freescale Semiconductor, Inc. */ +#include <linux/container_of.h> +#include <linux/device.h> #include <linux/err.h> #include <linux/gpio.h> #include <linux/gpio/consumer.h> -#include <linux/kernel.h> #include <linux/leds.h> #include <linux/mod_devicetable.h> #include <linux/module.h> +#include <linux/overflow.h> #include <linux/pinctrl/consumer.h> #include <linux/platform_device.h> #include <linux/property.h> #include <linux/slab.h> +#include <linux/types.h> + #include "leds.h" struct gpio_led_data { |