
14 Jan
2015
14 Jan
'15
4 p.m.
Use phys_addr_t instead of int for addresses. Addresses can't be < 0.
Signed-off-by: Michal Simek michal.simek@xilinx.com ---
include/net.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/net.h b/include/net.h index 18d279ebe737..3da35fe98188 100644 --- a/include/net.h +++ b/include/net.h @@ -81,7 +81,7 @@ enum eth_state_t { struct eth_device { char name[16]; unsigned char enetaddr[6]; - int iobase; + phys_addr_t iobase; int state;
int (*init) (struct eth_device *, bd_t *); -- 1.8.2.3