[U-Boot] [PATCH] cs8900 compile fix
Ladislav Michl
ladis at linux-mips.org
Mon Mar 23 18:16:34 CET 2009
cs8900.c: In function 'eth_init':
cs8900.c:164: warning: passing argument 2 of 'eth_getenv_enetaddr' from incompatible pointer type
cs8900.c:165: error: invalid operands to binary <<
cs8900.c:166: error: invalid operands to binary <<
cs8900.c:167: error: invalid operands to binary <<
Signed-off-by: Ladislav Michl <ladis at linux-mips.org>
diff --git a/drivers/net/cs8900.c b/drivers/net/cs8900.c
index 0557fcd..5e2b3b0 100644
--- a/drivers/net/cs8900.c
+++ b/drivers/net/cs8900.c
@@ -151,7 +151,7 @@ void eth_halt (void)
int eth_init (bd_t * bd)
{
- uchar *enetaddr[6];
+ uchar enetaddr[6];
/* verify chip id */
if (get_reg_init_bus (PP_ChipID) != 0x630e) {
More information about the U-Boot
mailing list