Skip to content

Commit

Permalink
bcma: gpio: Switch to use fwnode instead of of_node
Browse files Browse the repository at this point in the history
GPIO library now accepts fwnode as a firmware node,
so switch the driver to use it.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
  • Loading branch information
andy-shev authored and intel-lab-lkp committed May 3, 2022
1 parent bb30013 commit 46c0f36
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions drivers/bcma/driver_gpio.c
Expand Up @@ -11,6 +11,8 @@
#include <linux/gpio/driver.h>
#include <linux/interrupt.h>
#include <linux/export.h>
#include <linux/poperty.h>

#include <linux/bcma/bcma.h>

#include "bcma_private.h"
Expand Down Expand Up @@ -182,9 +184,8 @@ int bcma_gpio_init(struct bcma_drv_cc *cc)
chip->direction_input = bcma_gpio_direction_input;
chip->direction_output = bcma_gpio_direction_output;
chip->parent = bus->dev;
#if IS_BUILTIN(CONFIG_OF)
chip->of_node = cc->core->dev.of_node;
#endif
chip->fwnode = dev_fwnode(&cc->core->dev);

switch (bus->chipinfo.id) {
case BCMA_CHIP_ID_BCM4707:
case BCMA_CHIP_ID_BCM5357:
Expand Down

0 comments on commit 46c0f36

Please sign in to comment.