+#ifndef _ETHERBOOT_COMPAT_H
+#define _ETHERBOOT_COMPAT_H
+
+#include <paging.h>
+#include "lwip/pbuf.h"
+
#define ETH_ALEN 6
struct dev {
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);
+ int (*recv) (struct nic *nic);
+ void (*transmit) (struct nic *nic, struct pbuf *p);
};
-#define virt_to_bus(x) ((unsigned long)x)
+#define virt_to_bus(x) memory_v2p((void *)(x))
+
+#endif