diff options
author | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2022-09-25 22:44:18 -0700 |
---|---|---|
committer | Lee Jones <lee@kernel.org> | 2022-12-07 13:28:07 +0000 |
commit | de5567ca320aee5c99dd7bbebefffb05cc9df9f4 (patch) | |
tree | e0d26cd6976e9e34e83df700257314b52b17a28f /drivers/mfd/madera-core.c | |
parent | 2e992b22ccd1a620165a077355163798c3951d4b (diff) | |
download | lwn-de5567ca320aee5c99dd7bbebefffb05cc9df9f4.tar.gz lwn-de5567ca320aee5c99dd7bbebefffb05cc9df9f4.zip |
mfd: madera: Include correct gpio API
The driver is using gpiod API and therefore should include
linux/gpio/consumer.h, not linux/gpio.h. Also, the driver does not use
any of the APIs from of_gpio.h, so we should not be including it.
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Signed-off-by: Lee Jones <lee@kernel.org>
Link: https://lore.kernel.org/r/20220926054421.1546436-2-dmitry.torokhov@gmail.com
Diffstat (limited to 'drivers/mfd/madera-core.c')
-rw-r--r-- | drivers/mfd/madera-core.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/mfd/madera-core.c b/drivers/mfd/madera-core.c index a2abc0094def..bdbd5bfc9714 100644 --- a/drivers/mfd/madera-core.c +++ b/drivers/mfd/madera-core.c @@ -8,13 +8,12 @@ #include <linux/device.h> #include <linux/delay.h> #include <linux/err.h> -#include <linux/gpio.h> +#include <linux/gpio/consumer.h> #include <linux/mfd/core.h> #include <linux/module.h> #include <linux/mutex.h> #include <linux/notifier.h> #include <linux/of.h> -#include <linux/of_gpio.h> #include <linux/platform_device.h> #include <linux/pm_runtime.h> #include <linux/regmap.h> |