mirror of
https://github.com/u-boot/u-boot.git
synced 2024-11-25 13:14:19 +08:00
drivers/net/cs8900.c: Fix GCC 4.6 warning
Fix: cs8900.c: In function 'get_reg_init_bus': cs8900.c:69:14: warning: variable 'c' set but not used [-Wunused-but-set-variable] Signed-off-by: Anatolij Gustschin <agust@denx.de>
This commit is contained in:
parent
604256a449
commit
da227355bf
@ -66,15 +66,14 @@
|
||||
static u16 get_reg_init_bus(struct eth_device *dev, int regno)
|
||||
{
|
||||
/* force 16 bit busmode */
|
||||
volatile u8 c;
|
||||
struct cs8900_priv *priv = (struct cs8900_priv *)(dev->priv);
|
||||
uint8_t volatile * const iob = (uint8_t volatile * const)dev->iobase;
|
||||
|
||||
c = readb(iob);
|
||||
c = readb(iob + 1);
|
||||
c = readb(iob);
|
||||
c = readb(iob + 1);
|
||||
c = readb(iob);
|
||||
readb(iob);
|
||||
readb(iob + 1);
|
||||
readb(iob);
|
||||
readb(iob + 1);
|
||||
readb(iob);
|
||||
|
||||
REG_WRITE(regno, &priv->regs->pptr);
|
||||
return REG_READ(&priv->regs->pdata);
|
||||
|
Loading…
Reference in New Issue
Block a user