[openwrt/openwrt] ath79: rb91x-key: replace fwnode with pdev
LEDE Commits
lede-commits at lists.infradead.org
Thu Oct 3 08:17:28 PDT 2024
hauke pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/8c36040f04d1c743c72941d5ee651fbb04afd09f
commit 8c36040f04d1c743c72941d5ee651fbb04afd09f
Author: Rosen Penev <rosenp at gmail.com>
AuthorDate: Sun Sep 22 11:19:40 2024 -0700
ath79: rb91x-key: replace fwnode with pdev
There's no specific fwnode handling here. Simpler to just use pdev.
Signed-off-by: Rosen Penev <rosenp at gmail.com>
Link: https://github.com/openwrt/openwrt/pull/16506
Signed-off-by: Hauke Mehrtens <hauke at hauke-m.de>
---
target/linux/ath79/files/drivers/gpio/gpio-rb91x-key.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/target/linux/ath79/files/drivers/gpio/gpio-rb91x-key.c b/target/linux/ath79/files/drivers/gpio/gpio-rb91x-key.c
index 92e329e435..4b21c93469 100644
--- a/target/linux/ath79/files/drivers/gpio/gpio-rb91x-key.c
+++ b/target/linux/ath79/files/drivers/gpio/gpio-rb91x-key.c
@@ -144,7 +144,6 @@ static int gpio_rb91x_key_probe(struct platform_device *pdev)
struct gpio_rb91x_key *drvdata;
struct gpio_chip *gc;
struct device *dev = &pdev->dev;
- struct fwnode_handle *fwnode = dev->fwnode;
drvdata = devm_kzalloc(dev, sizeof(*drvdata), GFP_KERNEL);
if (!drvdata)
@@ -159,6 +158,7 @@ static int gpio_rb91x_key_probe(struct platform_device *pdev)
gc = &drvdata->gc;
gc->label = GPIO_RB91X_KEY_DRIVER_NAME;
+ gc->parent = dev;
gc->can_sleep = 1;
gc->base = -1;
gc->ngpio = GPIO_RB91X_KEY_NGPIOS;
@@ -166,7 +166,6 @@ static int gpio_rb91x_key_probe(struct platform_device *pdev)
gc->set = gpio_rb91x_key_set;
gc->direction_output = gpio_rb91x_key_direction_output;
gc->direction_input = gpio_rb91x_key_direction_input;
- gc->fwnode = fwnode;
platform_set_drvdata(pdev, drvdata);
More information about the lede-commits
mailing list