aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hsi/clients/nokia-modem.c
diff options
context:
space:
mode:
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>2022-09-14 18:37:55 +0300
committerSebastian Reichel <sebastian.reichel@collabora.com>2022-09-20 17:29:29 +0200
commit811908159e7ee583e30565018a08284cf5ddae77 (patch)
tree567160d5679be72a3380fda759b0afedbdccdf74 /drivers/hsi/clients/nokia-modem.c
parentHSI: ssi_protocol: fix potential resource leak in ssip_pn_open() (diff)
downloadlinux-dev-811908159e7ee583e30565018a08284cf5ddae77.tar.xz
linux-dev-811908159e7ee583e30565018a08284cf5ddae77.zip
HSI: nokia-modem: Replace of_gpio_count() by gpiod_count()
As a preparation to unexport of_gpio_named_count(), convert the driver to use gpiod_count() instead. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Diffstat (limited to 'drivers/hsi/clients/nokia-modem.c')
-rw-r--r--drivers/hsi/clients/nokia-modem.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/hsi/clients/nokia-modem.c b/drivers/hsi/clients/nokia-modem.c
index cd7ebf4c2e2f..97ba59e60663 100644
--- a/drivers/hsi/clients/nokia-modem.c
+++ b/drivers/hsi/clients/nokia-modem.c
@@ -13,7 +13,6 @@
#include <linux/interrupt.h>
#include <linux/of.h>
#include <linux/of_irq.h>
-#include <linux/of_gpio.h>
#include <linux/hsi/ssi_protocol.h>
static unsigned int pm = 1;
@@ -75,8 +74,7 @@ static int nokia_modem_gpio_probe(struct device *dev)
struct nokia_modem_device *modem = dev_get_drvdata(dev);
int gpio_count, gpio_name_count, i, err;
- gpio_count = of_gpio_count(np);
-
+ gpio_count = gpiod_count(dev, NULL);
if (gpio_count < 0) {
dev_err(dev, "missing gpios: %d\n", gpio_count);
return gpio_count;