diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-06-09 09:19:18 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2021-06-09 12:55:46 +0200 |
commit | 4ccf359849ce709f4bf0214b4b5b8b6891d38770 (patch) | |
tree | 22aa30b2eeac77ce906a216195da7b18c6ce2131 /include | |
parent | spi: hisi-kunpeng: Add debugfs support (diff) | |
download | linux-4ccf359849ce709f4bf0214b4b5b8b6891d38770.tar.xz linux-4ccf359849ce709f4bf0214b4b5b8b6891d38770.zip |
spi: remove spi_set_cs_timing()
No one seems to be using this global and exported function, so remove it
as it is no longer needed.
Cc: Mark Brown <broonie@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Link: https://lore.kernel.org/r/20210609071918.2852069-1-gregkh@linuxfoundation.org
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/spi/spi.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/linux/spi/spi.h b/include/linux/spi/spi.h index 74239d65c7fd..f924160e995f 100644 --- a/include/linux/spi/spi.h +++ b/include/linux/spi/spi.h @@ -1108,11 +1108,6 @@ static inline void spi_message_free(struct spi_message *m) kfree(m); } -extern int spi_set_cs_timing(struct spi_device *spi, - struct spi_delay *setup, - struct spi_delay *hold, - struct spi_delay *inactive); - extern int spi_setup(struct spi_device *spi); extern int spi_async(struct spi_device *spi, struct spi_message *message); extern int spi_async_locked(struct spi_device *spi, |