diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2022-10-07 15:44:44 +0200 |
---|---|---|
committer | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2022-10-24 11:29:41 +0200 |
commit | 275d13562a5918dc71c6e9642f454255741aaecb (patch) | |
tree | aa2ad10cc366f41d1ee67e4b2d3e7a753ad102a6 /drivers/gpio/gpio-wm8350.c | |
parent | gpio: reg: Add missing header(s) (diff) | |
download | linux-275d13562a5918dc71c6e9642f454255741aaecb.tar.xz linux-275d13562a5918dc71c6e9642f454255741aaecb.zip |
gpio: wm8350: Remove unused header(s)
Some of the headers are unused in the driver, remove them.
While at it, sort headers alphabetically.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Diffstat (limited to 'drivers/gpio/gpio-wm8350.c')
-rw-r--r-- | drivers/gpio/gpio-wm8350.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/gpio/gpio-wm8350.c b/drivers/gpio/gpio-wm8350.c index b1b131fb9804..2421cf606ed6 100644 --- a/drivers/gpio/gpio-wm8350.c +++ b/drivers/gpio/gpio-wm8350.c @@ -8,13 +8,12 @@ * */ -#include <linux/kernel.h> -#include <linux/slab.h> -#include <linux/module.h> #include <linux/gpio/driver.h> +#include <linux/kernel.h> #include <linux/mfd/core.h> +#include <linux/module.h> #include <linux/platform_device.h> -#include <linux/seq_file.h> +#include <linux/slab.h> #include <linux/mfd/wm8350/core.h> #include <linux/mfd/wm8350/gpio.h> |