diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2021-11-23 22:27:22 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2021-11-29 15:19:59 +0300 |
commit | a9c8f68ce2c37ced2f7a8667eda71b7753ede398 (patch) | |
tree | 8d3a3e611931f06f312d7e02507ae0a654d205a7 /include/linux/spi | |
parent | 342e3ce0f6f4691b31b1c7c9c3ae37160c4a82d2 (diff) | |
download | linux-a9c8f68ce2c37ced2f7a8667eda71b7753ede398.tar.xz |
spi: pxa2xx: Get rid of unused ->cs_control()
Since the last user of the custom ->cs_control() gone, we may get rid of
this legacy API completely.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20211123192723.44537-2-andriy.shevchenko@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'include/linux/spi')
-rw-r--r-- | include/linux/spi/pxa2xx_spi.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/linux/spi/pxa2xx_spi.h b/include/linux/spi/pxa2xx_spi.h index eaab121ee575..42e06bfbc2a4 100644 --- a/include/linux/spi/pxa2xx_spi.h +++ b/include/linux/spi/pxa2xx_spi.h @@ -9,9 +9,6 @@ #include <linux/pxa2xx_ssp.h> -#define PXA2XX_CS_ASSERT (0x01) -#define PXA2XX_CS_DEASSERT (0x02) - struct dma_chan; /* @@ -47,7 +44,6 @@ struct pxa2xx_spi_chip { u32 timeout; u8 enable_loopback; int gpio_cs; - void (*cs_control)(u32 command); }; #if defined(CONFIG_ARCH_PXA) || defined(CONFIG_ARCH_MMP) |