diff options
author | 2023-03-06 20:29:13 +0200 | |
---|---|---|
committer | 2023-03-06 18:39:16 +0000 | |
commit | c7cc588bf0054ce33a11b98d05859105c046c706 (patch) | |
tree | 018fa440aeec9a23d40514ee0131448108582dda | |
parent | Add Quad SPI driver for StarFive JH7110 SoC (diff) | |
download | wireguard-linux-c7cc588bf0054ce33a11b98d05859105c046c706.tar.xz wireguard-linux-c7cc588bf0054ce33a11b98d05859105c046c706.zip |
spi: Propagate firmware node
Propagate firmware node by using a specific API call, i.e. device_set_node().
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20230306182913.87231-1-andriy.shevchenko@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | drivers/spi/spi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c index 798030c0c5ce..295d02e7f0a8 100644 --- a/drivers/spi/spi.c +++ b/drivers/spi/spi.c @@ -2368,8 +2368,8 @@ of_register_spi_device(struct spi_controller *ctlr, struct device_node *nc) /* Store a pointer to the node in the device structure */ of_node_get(nc); - spi->dev.of_node = nc; - spi->dev.fwnode = of_fwnode_handle(nc); + + device_set_node(&spi->dev, of_fwnode_handle(nc)); /* Register the new device */ rc = spi_add_device(spi); |