diff options
author | Linus Walleij | 2019-08-20 12:34:29 +0200 |
---|---|---|
committer | Arnd Bergmann | 2019-09-03 22:09:46 +0200 |
commit | f73d137d562f4c8bf225083c96bc7a91354f06cc (patch) | |
tree | 886a5c8578e14d6a0154bdd23ae009d25cf2e304 /arch/arm/common | |
parent | 9ddb2526eb4a5f336ceb059612fa0c02f996d3e8 (diff) |
ARM: scoop: Use the right include
This is a GPIO driver so it should include
<linux/gpio/driver.h> not <linux/gpio.h>
Link: https://lore.kernel.org/r/20190820103429.7028-1-linus.walleij@linaro.org
Cc: Richard Purdie <rpurdie@rpsys.net>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm/common')
-rw-r--r-- | arch/arm/common/scoop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/common/scoop.c b/arch/arm/common/scoop.c index 60130bd7b182..6edb961bd6c1 100644 --- a/arch/arm/common/scoop.c +++ b/arch/arm/common/scoop.c @@ -8,7 +8,7 @@ */ #include <linux/device.h> -#include <linux/gpio.h> +#include <linux/gpio/driver.h> #include <linux/string.h> #include <linux/slab.h> #include <linux/platform_device.h> |