diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2024-02-23 23:30:00 +0300 |
---|---|---|
committer | Lee Jones <lee@kernel.org> | 2024-03-07 11:45:31 +0300 |
commit | 7774f3d1dd3822e938e236df67766436c0debd11 (patch) | |
tree | 09b210c5cafc6346434383c59ce95fa2bed9a107 /include/linux/leds-expresswire.h | |
parent | d48ece99f2d90be333dad38cba0dc6fadc7dff8c (diff) | |
download | linux-7774f3d1dd3822e938e236df67766436c0debd11.tar.xz |
leds: expresswire: Don't use "proxy" headers
Update header inclusions to follow IWYU (Include What You Use)
principle.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Duje Mihanović <duje.mihanovic@skole.hr>
Link: https://lore.kernel.org/r/20240223203010.881065-1-andriy.shevchenko@linux.intel.com
Signed-off-by: Lee Jones <lee@kernel.org>
Diffstat (limited to 'include/linux/leds-expresswire.h')
-rw-r--r-- | include/linux/leds-expresswire.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/linux/leds-expresswire.h b/include/linux/leds-expresswire.h index 3c61902ccac8..a422921f4159 100644 --- a/include/linux/leds-expresswire.h +++ b/include/linux/leds-expresswire.h @@ -8,7 +8,9 @@ #ifndef _LEDS_EXPRESSWIRE_H #define _LEDS_EXPRESSWIRE_H -#include <linux/gpio/consumer.h> +#include <linux/types.h> + +struct gpio_desc; struct expresswire_timing { unsigned long poweroff_us; |