From: Andy Shevchenko Date: Wed, 24 Aug 2016 11:11:30 +0000 (+0300) Subject: spi: pxa2xx-pci: fix ACPI-based enumeration of SPI devices X-Git-Tag: v6.1~15878^2^5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b70cd2de0ea85f5ab51a1d01893cba6415011b9d;p=sdk%2Femulator%2Femulator-kernel.git spi: pxa2xx-pci: fix ACPI-based enumeration of SPI devices Slave devices are not enumerated by ACPI data because the ACPI handle for the core driver is NULL if it was enumerated by PCI. Propagate firmware node handle of the PCI device to the platform device. Suggested-by: Mika Westerberg Signed-off-by: Andy Shevchenko Signed-off-by: Mark Brown --- diff --git a/drivers/spi/spi-pxa2xx-pci.c b/drivers/spi/spi-pxa2xx-pci.c index f3df522db93b..58d2d48e16a5 100644 --- a/drivers/spi/spi-pxa2xx-pci.c +++ b/drivers/spi/spi-pxa2xx-pci.c @@ -214,6 +214,7 @@ static int pxa2xx_spi_pci_probe(struct pci_dev *dev, return PTR_ERR(ssp->clk); memset(&pi, 0, sizeof(pi)); + pi.fwnode = dev->dev.fwnode; pi.parent = &dev->dev; pi.name = "pxa2xx-spi"; pi.id = ssp->port_id;