From c7bf9cc575dea15ecc8780afd34ffb3503f3249b Mon Sep 17 00:00:00 2001 From: Miguel Date: Thu, 27 Sep 2018 01:21:33 +0200 Subject: try to isolate netstack to library --- driver/e1000.h | 2 +- driver/keyboard.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'driver') diff --git a/driver/e1000.h b/driver/e1000.h index 7eee572..ba988bc 100644 --- a/driver/e1000.h +++ b/driver/e1000.h @@ -1,5 +1,5 @@ #include -#include "netdev.h" +#include "net/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); diff --git a/driver/keyboard.c b/driver/keyboard.c index f667396..efbcc53 100644 --- a/driver/keyboard.c +++ b/driver/keyboard.c @@ -8,7 +8,7 @@ #include -#include "inet.h" +#include "net/inet.h" ringbuffer kb_in; -- cgit v1.2.3