X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/42125f27f3d2a77966f2015c545a88c4113368ef..98d29191ab62caf43c16b3d792996ea51bec067d:/net/etherboot-compat.h diff --git a/net/etherboot-compat.h b/net/etherboot-compat.h index 2d8d98f..e769ce8 100644 --- a/net/etherboot-compat.h +++ b/net/etherboot-compat.h @@ -1,6 +1,8 @@ #ifndef _ETHERBOOT_COMPAT_H #define _ETHERBOOT_COMPAT_H +#include + #define ETH_ALEN 6 struct dev { @@ -13,11 +15,13 @@ struct nic { unsigned int ioaddr; unsigned int irqno; + + unsigned char hwaddr[6]; int (*poll) (struct nic *nic, int retrieve); - void (*transmit) (const char *dest_addr, unsigned int proto, unsigned int size, const char *pkt); + void (*transmit) (unsigned int size, const char *pkt); }; -#define virt_to_bus(x) ((unsigned long)x) +#define virt_to_bus(x) memory_v2p((void *)(x)) #endif