diff options
author | Herton Ronaldo Krzesinski <herton.krzesinski@canonical.com> | 2012-05-11 18:29:50 -0400 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2012-05-20 01:12:06 -0400 |
commit | 067aa4815a9bc12a569d8a06afef50ba5773afbf (patch) | |
tree | bef078daa67d8a52aa08322299f4d997449b60cb /drivers/spi/spi-fsl-spi.c | |
parent | bc98d13f5cce1b617305966c3e95f7b2e62aa820 (diff) |
spi/spi-fsl-spi: reference correct pdata in fsl_spi_cs_control
Commit 178db7d3, "spi: Fix device unregistration when unregistering
the bus master", changed spi device initialization of dev.parent pointer
to be the master's device pointer instead of his parent.
This introduced a bug in spi-fsl-spi, since its usage of spi device
pointer was not updated accordingly. This was later fixed by commit
5039a86, "spi/mpc83xx: fix NULL pdata dereference bug", but it missed
another spot on fsl_spi_cs_control function where we also need to update
usage of spi device pointer. This change address that.
Cc: stable@vger.kernel.org
Signed-off-by: Herton Ronaldo Krzesinski <herton.krzesinski@canonical.com>
Acked-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'drivers/spi/spi-fsl-spi.c')
-rw-r--r-- | drivers/spi/spi-fsl-spi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-fsl-spi.c b/drivers/spi/spi-fsl-spi.c index 5f748c0d96bd..6a62934ca74c 100644 --- a/drivers/spi/spi-fsl-spi.c +++ b/drivers/spi/spi-fsl-spi.c | |||
@@ -933,7 +933,7 @@ err: | |||
933 | 933 | ||
934 | static void fsl_spi_cs_control(struct spi_device *spi, bool on) | 934 | static void fsl_spi_cs_control(struct spi_device *spi, bool on) |
935 | { | 935 | { |
936 | struct device *dev = spi->dev.parent; | 936 | struct device *dev = spi->dev.parent->parent; |
937 | struct mpc8xxx_spi_probe_info *pinfo = to_of_pinfo(dev->platform_data); | 937 | struct mpc8xxx_spi_probe_info *pinfo = to_of_pinfo(dev->platform_data); |
938 | u16 cs = spi->chip_select; | 938 | u16 cs = spi->chip_select; |
939 | int gpio = pinfo->gpios[cs]; | 939 | int gpio = pinfo->gpios[cs]; |