diff options
author | Jarkko Nikula <jarkko.nikula@linux.intel.com> | 2016-09-07 17:04:07 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-09-12 20:01:27 +0100 |
commit | 96579a4e56bdecfb4642cfb68eb85d079acb9d28 (patch) | |
tree | 58bf110c7cf0f071b12901a3b8c1ade00594712f /drivers/spi/spi-pxa2xx.h | |
parent | 4fc0caac065dbf300238997c7d2c212a2b120099 (diff) | |
download | linux-96579a4e56bdecfb4642cfb68eb85d079acb9d28.tar.bz2 |
spi: pxa2xx: Remove pointer to chip data from driver data
Transfer state machine in this driver does not need to set/unset pointer
to chip data between queueing and finalizing message as it is not
actually used as a state info itself but just pointer passing.
Since this per SPI device specific chip data is already carried in
ctldata use that and remove pointer to chip data from driver data.
While at it, group initialized variables before uninitialized variables
in pump_transfers().
Signed-off-by: Jarkko Nikula <jarkko.nikula@linux.intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/spi/spi-pxa2xx.h')
-rw-r--r-- | drivers/spi/spi-pxa2xx.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/spi/spi-pxa2xx.h b/drivers/spi/spi-pxa2xx.h index 4f858664cee1..ae3b15ff6fb2 100644 --- a/drivers/spi/spi-pxa2xx.h +++ b/drivers/spi/spi-pxa2xx.h @@ -54,7 +54,6 @@ struct driver_data { /* Current message transfer state info */ struct spi_transfer *cur_transfer; - struct chip_data *cur_chip; size_t len; void *tx; void *tx_end; |