diff options
author | Andy Shevchenko <[email protected]> | 2024-03-04 19:42:17 +0200 |
---|---|---|
committer | Stefan Schmidt <[email protected]> | 2024-03-06 21:13:25 +0100 |
commit | defa2cb4e43995f04887c71101c388280f45827b (patch) | |
tree | f2c3e913e8b401c661cd9bdeb497306be8c52146 | |
parent | e8a1e58345cf40b7b272e08ac7b32328b2543e40 (diff) |
ieee802154: at86rf230: Replace of_gpio.h by proper one
of_gpio.h is deprecated and subject to remove.
The driver doesn't use it directly, replace it
with what is really being used.
Signed-off-by: Andy Shevchenko <[email protected]>
Acked-by: Miquel Raynal <[email protected]>
Message-ID: <[email protected]>
Signed-off-by: Stefan Schmidt <[email protected]>
-rw-r--r-- | drivers/net/ieee802154/at86rf230.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/ieee802154/at86rf230.c b/drivers/net/ieee802154/at86rf230.c index 6212164ffb36..f632b0cfd5ae 100644 --- a/drivers/net/ieee802154/at86rf230.c +++ b/drivers/net/ieee802154/at86rf230.c @@ -11,17 +11,16 @@ */ #include <linux/kernel.h> #include <linux/module.h> +#include <linux/gpio/consumer.h> #include <linux/hrtimer.h> #include <linux/jiffies.h> #include <linux/interrupt.h> #include <linux/irq.h> -#include <linux/gpio.h> #include <linux/delay.h> #include <linux/property.h> #include <linux/spi/spi.h> #include <linux/regmap.h> #include <linux/skbuff.h> -#include <linux/of_gpio.h> #include <linux/ieee802154.h> #include <net/mac802154.h> |