]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
spi: Remove unused spi_init
authorJagan Teki <jagan@amarulasolutions.com>
Tue, 20 Nov 2018 09:36:35 +0000 (15:06 +0530)
committerJagan Teki <jagan@amarulasolutions.com>
Tue, 27 Nov 2018 15:36:53 +0000 (21:06 +0530)
Remove spi_init definition which never used on
respective code since from many years.

Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
13 files changed:
drivers/net/e1000_spi.c
drivers/spi/atmel_spi.c
drivers/spi/davinci_spi.c
drivers/spi/fsl_dspi.c
drivers/spi/fsl_espi.c
drivers/spi/lpc32xx_ssp.c
drivers/spi/mxc_spi.c
drivers/spi/mxs_spi.c
drivers/spi/omap3_spi.c
drivers/spi/sh_qspi.c
drivers/spi/sh_spi.c
drivers/spi/soft_spi_legacy.c
include/spi.h

index b38f4df9f31e584f707428fdcd2cf33757f94420..aecd290d72939f4a34a6348a85aec0c99e48b0c2 100644 (file)
@@ -77,9 +77,6 @@ static inline struct e1000_hw *e1000_hw_from_spi(struct spi_slave *spi)
        return container_of(spi, struct e1000_hw, spi);
 }
 
-/* Not sure why all of these are necessary */
-void spi_init(void)   { /* Nothing to do */ }
-
 struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs,
                unsigned int max_hz, unsigned int mode)
 {
index 1db8bbef2bbdc196ae76ccda759433b572886073..cf4de9ee1aaf4712e13a6cb6dbeb5f7c2c3ae480 100644 (file)
@@ -34,11 +34,6 @@ static int spi_has_wdrbt(struct atmel_spi_slave *slave)
        return (ATMEL_SPI_VERSION_REV(ver) >= 0x210);
 }
 
-void spi_init()
-{
-
-}
-
 struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs,
                        unsigned int max_hz, unsigned int mode)
 {
index 07fa5e3b8a113baefe97f1fdb8ed836037e317d9..4d2c106440b3af635446305aceac10c05b03ce69 100644 (file)
@@ -388,11 +388,6 @@ void spi_cs_deactivate(struct spi_slave *slave)
        /* do nothing */
 }
 
-void spi_init(void)
-{
-       /* do nothing */
-}
-
 struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs,
                        unsigned int max_hz, unsigned int mode)
 {
index f7ed8fbe08b7733583e705751d892f85649d91da..764c94215e7cebc8766f44974807e5081fe5ea79 100644 (file)
@@ -390,11 +390,6 @@ static int fsl_dspi_cfg_speed(struct fsl_dspi_priv *priv, uint speed)
        return 0;
 }
 #ifndef CONFIG_DM_SPI
-void spi_init(void)
-{
-       /* Nothing to do */
-}
-
 int spi_cs_is_valid(unsigned int bus, unsigned int cs)
 {
        if (((cs >= 0) && (cs < 8)) && ((bus >= 0) && (bus < 8)))
index e9941593f5fdc08ee2b4e4b2cd30c7ce3bd4dc2e..7444ae1a068bce1cc3eddc64a922d5ab831dfc33 100644 (file)
@@ -118,11 +118,6 @@ void spi_free_slave(struct spi_slave *slave)
        free(fsl);
 }
 
-void spi_init(void)
-{
-
-}
-
 int spi_claim_bus(struct spi_slave *slave)
 {
        struct fsl_spi_slave *fsl = to_fsl_spi_slave(slave);
index ce12eee65715890429258b81aaef45cbf16521fe..4b09366317afb5b2de11aa13fc322d38349ceaaf 100644 (file)
@@ -47,15 +47,6 @@ static inline struct lpc32xx_spi_slave *to_lpc32xx_spi_slave(
        return container_of(slave, struct lpc32xx_spi_slave, slave);
 }
 
-/* spi_init is called during boot when CONFIG_CMD_SPI is defined */
-void spi_init(void)
-{
-       /*
-        *  nothing to do: clocking was enabled in lpc32xx_ssp_enable()
-        * and configuration will be done in spi_setup_slave()
-       */
-}
-
 /* the following is called in sequence by do_spi_xfer() */
 
 struct spi_slave *spi_setup_slave(uint bus, uint cs, uint max_hz, uint mode)
index 0dccc38b82d241a23874dea24ee1f17351522e9d..b2636909ce6510a0dfc7c42cba46b13be93aa9eb 100644 (file)
@@ -400,10 +400,6 @@ int spi_xfer(struct spi_slave *slave, unsigned int bitlen, const void *dout,
        return mxc_spi_xfer_internal(mxcs, bitlen, dout, din, flags);
 }
 
-void spi_init(void)
-{
-}
-
 /*
  * Some SPI devices require active chip-select over multiple
  * transactions, we achieve this using a GPIO. Still, the SPI
index 006fe8281c5bd1a691b39a2ad0adde1e89a9757a..5065e407f82466ba45ea6f8336179d3d5952c936 100644 (file)
@@ -39,10 +39,6 @@ static inline struct mxs_spi_slave *to_mxs_slave(struct spi_slave *slave)
        return container_of(slave, struct mxs_spi_slave, slave);
 }
 
-void spi_init(void)
-{
-}
-
 int spi_cs_is_valid(unsigned int bus, unsigned int cs)
 {
        /* MXS SPI: 4 ports and 3 chip selects maximum */
index ecf54bb7148e7d8ca9b80b3d850b92e5e8cd1289..c7fcf050a58738090eb7876d7622c52c949690fd 100644 (file)
@@ -461,11 +461,6 @@ static inline struct omap3_spi_priv *to_omap3_spi(struct spi_slave *slave)
        return container_of(slave, struct omap3_spi_priv, slave);
 }
 
-void spi_init(void)
-{
-       /* do nothing */
-}
-
 void spi_free_slave(struct spi_slave *slave)
 {
        struct omap3_spi_priv *priv = to_omap3_spi(slave);
index 64dfd748d67a12f32f577ac2e128ba0298a9a99a..5ae203d8d4f87c734933e934b9871e120f28fa70 100644 (file)
@@ -247,11 +247,6 @@ void spi_cs_deactivate(struct spi_slave *slave)
        sh_qspi_cs_deactivate(ss);
 }
 
-void spi_init(void)
-{
-       /* nothing to do */
-}
-
 struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs,
                unsigned int max_hz, unsigned int mode)
 {
index bc2bd638e6f5ac6bd0b0543b3af2fbc6d1955bcd..c58fd0ebc43812c8d5f64dc828fa4accf2bc42ac 100644 (file)
@@ -66,10 +66,6 @@ static int write_fifo_empty_wait(struct sh_spi *ss)
        return 0;
 }
 
-void spi_init(void)
-{
-}
-
 static void sh_spi_set_cs(struct sh_spi *ss, unsigned int cs)
 {
        unsigned long val = 0;
index 0aac0c065daa5442630ba29289b5cdfea04503fd..cc5ab5f991dae090880a0ecedbc3e4a31f7477c1 100644 (file)
@@ -36,13 +36,6 @@ static inline struct soft_spi_slave *to_soft_spi(struct spi_slave *slave)
 /*                         Public Functions                            */
 /*=====================================================================*/
 
-/*-----------------------------------------------------------------------
- * Initialization
- */
-void spi_init (void)
-{
-}
-
 struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs,
                unsigned int max_hz, unsigned int mode)
 {
index 938627bc012b57294365cc4b5ca4691d82dbf298..92427e5f32953f37c67b0369cf6bb3b35cfa521c 100644 (file)
@@ -117,13 +117,6 @@ struct spi_slave {
 #define SPI_XFER_MMAP_END      BIT(3)  /* Memory Mapped End */
 };
 
-/**
- * Initialization, must be called once on start up.
- *
- * TODO: I don't think we really need this.
- */
-void spi_init(void);
-
 /**
  * spi_do_alloc_slave - Allocate a new SPI slave (internal)
  *