X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/0c23904ff02d1287132e872c058879973455fd68..5e93b6b390b19dcfe8dbd4bd8bfac37e50bab28f:/net/etherboot-compat.h diff --git a/net/etherboot-compat.h b/net/etherboot-compat.h index 6c96458..e769ce8 100644 --- a/net/etherboot-compat.h +++ b/net/etherboot-compat.h @@ -1,3 +1,8 @@ +#ifndef _ETHERBOOT_COMPAT_H +#define _ETHERBOOT_COMPAT_H + +#include + #define ETH_ALEN 6 struct dev { @@ -10,9 +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