diff options
author | Andy Shevchenko <[email protected]> | 2023-07-24 19:13:15 +0300 |
---|---|---|
committer | Bartosz Golaszewski <[email protected]> | 2023-07-27 09:32:50 +0200 |
commit | 905c50cd15c1256a869b0a98da5025db0be89b9e (patch) | |
tree | c3a4a57454e3beed7e378dd608eb729beb26e4c3 | |
parent | 6b4c76ded3582651afca319f2ca58c22ec908529 (diff) |
gpio: ge: Add missing header
Add missing platform_device.h that used to be implied by of_device.h.
While at it, sort headers alphabetically for better maintenance.
Reported-by: Randy Dunlap <[email protected]>
Fixes: e91d0f05e66a ("gpio: Explicitly include correct DT includes")
Closes: https://lore.kernel.org/r/[email protected]
Signed-off-by: Andy Shevchenko <[email protected]>
Reviewed-by: Rob Herring <[email protected]>
Acked-by: Randy Dunlap <[email protected]>
Tested-by: Randy Dunlap <[email protected]> # build-tested
Signed-off-by: Bartosz Golaszewski <[email protected]>
-rw-r--r-- | drivers/gpio/gpio-ge.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/drivers/gpio/gpio-ge.c b/drivers/gpio/gpio-ge.c index 4eecbc862abc..ecadb81ce7f8 100644 --- a/drivers/gpio/gpio-ge.c +++ b/drivers/gpio/gpio-ge.c @@ -17,13 +17,14 @@ * the I/O interrupt controllers mask to stop them propergating */ -#include <linux/kernel.h> +#include <linux/gpio/driver.h> #include <linux/io.h> -#include <linux/slab.h> -#include <linux/of.h> -#include <linux/of_address.h> +#include <linux/kernel.h> #include <linux/module.h> -#include <linux/gpio/driver.h> +#include <linux/of_address.h> +#include <linux/of.h> +#include <linux/platform_device.h> +#include <linux/slab.h> #define GEF_GPIO_DIRECT 0x00 #define GEF_GPIO_IN 0x04 |