diff options
| author | Wolfgang Denk <wd@denx.de> | 2008-07-14 15:19:07 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2008-07-14 15:19:07 +0200 | 
| commit | d0ff51ba5d0309dbe9e25ea54f8a0285a6d5db90 (patch) | |
| tree | f751c45fa698dd14edd985b80ae16ad521768457 /board/evb64260/eth.c | |
| parent | d7854223c5c85b5849fbf422cc8ac0efef461c37 (diff) | |
| download | olio-uboot-2014.01-d0ff51ba5d0309dbe9e25ea54f8a0285a6d5db90.tar.xz olio-uboot-2014.01-d0ff51ba5d0309dbe9e25ea54f8a0285a6d5db90.zip | |
Code cleanup: fix old style assignment ambiguities like "=-" etc.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'board/evb64260/eth.c')
| -rw-r--r-- | board/evb64260/eth.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/board/evb64260/eth.c b/board/evb64260/eth.c index 618af6f90..fa5b6d4a9 100644 --- a/board/evb64260/eth.c +++ b/board/evb64260/eth.c @@ -163,7 +163,7 @@ gt6426x_eth_receive(struct eth_dev_s *p,unsigned int icr)  	int eth_len=0;  	char *eth_data; -	eth0_rx_desc_single *rx=&p->eth_rx_desc[(p->rdn)]; +	eth0_rx_desc_single *rx = &p->eth_rx_desc[(p->rdn)];  	INVALIDATE_DCACHE((unsigned int)rx,(unsigned int)(rx+1)); @@ -252,7 +252,7 @@ gt6426x_eth_transmit(void *v, volatile char *p, unsigned int s)  #ifdef DEBUG  	unsigned int old_command_stat,old_psr;  #endif -	eth0_tx_desc_single *tx=&dev->eth_tx_desc[dev->tdn]; +	eth0_tx_desc_single *tx = &dev->eth_tx_desc[dev->tdn];  	/* wait for tx to be ready */  	INVALIDATE_DCACHE((unsigned int)tx,(unsigned int)(tx+1)); |