summaryrefslogtreecommitdiff
path: root/driver/e1000.h
diff options
context:
space:
mode:
Diffstat (limited to 'driver/e1000.h')
-rw-r--r--driver/e1000.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/driver/e1000.h b/driver/e1000.h
index ba7db7d..27a052e 100644
--- a/driver/e1000.h
+++ b/driver/e1000.h
@@ -1,5 +1,6 @@
#include <stdint.h>
-bool e1000_init(uint32_t base);
+#include "netdev.h"
+struct netdev e1000_init(uint32_t base);
int e1000_sendPacket(const void * p_data, uint16_t p_len);
void e1000_irq (int irq);
void e1000_linkup();