diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2021-12-20 15:24:39 +0200 |
---|---|---|
committer | Bartosz Golaszewski <brgl@bgdev.pl> | 2021-12-22 10:05:26 +0100 |
commit | 9804456e60670cc73f13361a3e628ecdf1bf7ee1 (patch) | |
tree | 107cbbd0826f1559eb974ced4ac5a3907c8c595a /drivers/gpio/gpio-gw-pld.c | |
parent | a2d05fb73493ca89b36c7d2c3ffc76effbfcd763 (diff) |
gpio: Remove unused local OF node pointers
After the commit 448cf90513d9 ("gpio: Get rid of duplicate of_node
assignment in the drivers") the OF node local pointers become unused.
Remove them for good and make compiler happy about.
Fixes: 448cf90513d9 ("gpio: Get rid of duplicate of_node assignment in the drivers")
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
[Bart: removed unrelated change in gpio-brcmstb]
Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
Diffstat (limited to 'drivers/gpio/gpio-gw-pld.c')
-rw-r--r-- | drivers/gpio/gpio-gw-pld.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-gw-pld.c b/drivers/gpio/gpio-gw-pld.c index 77a3fbd46111..2109803ffb38 100644 --- a/drivers/gpio/gpio-gw-pld.c +++ b/drivers/gpio/gpio-gw-pld.c @@ -71,7 +71,6 @@ static int gw_pld_probe(struct i2c_client *client, const struct i2c_device_id *id) { struct device *dev = &client->dev; - struct device_node *np = dev->of_node; struct gw_pld *gw; int ret; |