]> Joshua Wise's Git repositories - netwatch.git/blobdiff - net/etherboot-compat.h
Another set of 3c90x style cleanups.
[netwatch.git] / net / etherboot-compat.h
index 2d8d98fb47efb3ad40588810a44988a29bb75c1a..b3ccc514b2d81c30a42cc531199aa552adf23c5d 100644 (file)
@@ -1,6 +1,9 @@
 #ifndef _ETHERBOOT_COMPAT_H
 #define _ETHERBOOT_COMPAT_H
 
+#include <paging.h>
+#include "lwip/pbuf.h"
+
 #define ETH_ALEN       6
 
 struct dev {
@@ -13,11 +16,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);
+       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
This page took 0.019695 seconds and 4 git commands to generate.