diff options
| author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-10-16 15:01:15 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2008-10-18 21:54:03 +0200 | 
| commit | 6d0f6bcf337c5261c08fabe12982178c2c489d76 (patch) | |
| tree | ae13958ffa9c6b58c2ea97aac07a4ad2f04a350f /drivers/spi/soft_spi.c | |
| parent | 71edc271816ec82cf0550dd6980be2da3cc2ad9e (diff) | |
| download | olio-uboot-2014.01-6d0f6bcf337c5261c08fabe12982178c2c489d76.tar.xz olio-uboot-2014.01-6d0f6bcf337c5261c08fabe12982178c2c489d76.zip | |
rename CFG_ macros to CONFIG_SYS
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'drivers/spi/soft_spi.c')
| -rw-r--r-- | drivers/spi/soft_spi.c | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/drivers/spi/soft_spi.c b/drivers/spi/soft_spi.c index 25b589ad7..13df8cb7d 100644 --- a/drivers/spi/soft_spi.c +++ b/drivers/spi/soft_spi.c @@ -59,7 +59,7 @@ static inline struct soft_spi_slave *to_soft_spi(struct spi_slave *slave)  void spi_init (void)  {  #ifdef	SPI_INIT -	volatile immap_t *immr = (immap_t *)CFG_IMMR; +	volatile immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;  	SPI_INIT;  #endif @@ -95,8 +95,8 @@ void spi_free_slave(struct spi_slave *slave)  int spi_claim_bus(struct spi_slave *slave)  { -#ifdef CFG_IMMR -	volatile immap_t *immr = (immap_t *)CFG_IMMR; +#ifdef CONFIG_SYS_IMMR +	volatile immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;  #endif  	struct soft_spi_slave *ss = to_soft_spi(slave); @@ -132,8 +132,8 @@ void spi_release_bus(struct spi_slave *slave)  int  spi_xfer(struct spi_slave *slave, unsigned int bitlen,  		const void *dout, void *din, unsigned long flags)  { -#ifdef CFG_IMMR -	volatile immap_t *immr = (immap_t *)CFG_IMMR; +#ifdef CONFIG_SYS_IMMR +	volatile immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;  #endif  	struct soft_spi_slave *ss = to_soft_spi(slave);  	uchar		tmpdin  = 0; |