diff options
author | Grant Likely <grant.likely@secretlab.ca> | 2010-05-26 01:24:02 -0400 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2010-06-02 15:38:33 -0400 |
commit | b53550781b7d51036aea3b3ee63ece3c6c8f4597 (patch) | |
tree | 8e2ef00185bf4c2ceb409968dcf2b4d8f113ae58 | |
parent | ffabc9a6e8b34151a97fc91fcbef827f07504f75 (diff) |
of/spi: Fix build failure on spi_ppc4xx.c
This patch fixes a build error caused by the OF device_node pointer
being moved into struct device.
Fixes bug introduced by commit 61c7a080a5a061c976988fd4b844dfb468dda255
(of: Always use 'struct device.of_node' to get device node pointer)
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
CC: Sean MacLennan <smaclennan@pikatech.com>
CC: spi-devel-general@lists.sourceforge.net
CC: devicetree-discuss@lists.ozlabs.org
-rw-r--r-- | drivers/spi/spi_ppc4xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi_ppc4xx.c b/drivers/spi/spi_ppc4xx.c index 19c0b3b34fce..d53466a249d9 100644 --- a/drivers/spi/spi_ppc4xx.c +++ b/drivers/spi/spi_ppc4xx.c | |||
@@ -397,7 +397,7 @@ static int __init spi_ppc4xx_of_probe(struct of_device *op, | |||
397 | struct spi_master *master; | 397 | struct spi_master *master; |
398 | struct spi_bitbang *bbp; | 398 | struct spi_bitbang *bbp; |
399 | struct resource resource; | 399 | struct resource resource; |
400 | struct device_node *np = op->node; | 400 | struct device_node *np = op->dev.of_node; |
401 | struct device *dev = &op->dev; | 401 | struct device *dev = &op->dev; |
402 | struct device_node *opbnp; | 402 | struct device_node *opbnp; |
403 | int ret; | 403 | int ret; |