From 26b3263f8accbfe04b709b1a7ca357c3235b181e Mon Sep 17 00:00:00 2001 From: Oleg Hahm Date: Fri, 25 Mar 2016 15:10:07 +0100 Subject: [PATCH] netdev2: moved ethernet header into subdir --- cpu/native/netdev2_tap/netdev2_tap.c | 2 +- drivers/enc28j60/enc28j60.c | 2 +- drivers/encx24j600/encx24j600.c | 2 +- drivers/ethos/ethos.c | 2 +- drivers/include/net/{netdev2_eth.h => netdev2/eth.h} | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) rename drivers/include/net/{netdev2_eth.h => netdev2/eth.h} (98%) diff --git a/cpu/native/netdev2_tap/netdev2_tap.c b/cpu/native/netdev2_tap/netdev2_tap.c index 44649d011d..7d3c065281 100644 --- a/cpu/native/netdev2_tap/netdev2_tap.c +++ b/cpu/native/netdev2_tap/netdev2_tap.c @@ -50,7 +50,7 @@ #include "net/eui64.h" #include "net/netdev2.h" -#include "net/netdev2_eth.h" +#include "net/netdev2/eth.h" #include "net/ethernet.h" #include "net/ethernet/hdr.h" #include "netdev2_tap.h" diff --git a/drivers/enc28j60/enc28j60.c b/drivers/enc28j60/enc28j60.c index 5208bdf14c..8b2e541c5f 100644 --- a/drivers/enc28j60/enc28j60.c +++ b/drivers/enc28j60/enc28j60.c @@ -24,7 +24,7 @@ #include "xtimer.h" #include "assert.h" #include "net/ethernet.h" -#include "net/netdev2_eth.h" +#include "net/netdev2/eth.h" #include "enc28j60.h" #include "enc28j60_regs.h" diff --git a/drivers/encx24j600/encx24j600.c b/drivers/encx24j600/encx24j600.c index 6959129d26..cf7c079be1 100644 --- a/drivers/encx24j600/encx24j600.c +++ b/drivers/encx24j600/encx24j600.c @@ -29,7 +29,7 @@ #include "xtimer.h" #include "net/netdev2.h" -#include "net/netdev2_eth.h" +#include "net/netdev2/eth.h" #include "net/eui64.h" #include "net/ethernet.h" //#include "net/ethernet/hdr.h" diff --git a/drivers/ethos/ethos.c b/drivers/ethos/ethos.c index 6851cb7d57..ff233a4006 100644 --- a/drivers/ethos/ethos.c +++ b/drivers/ethos/ethos.c @@ -28,7 +28,7 @@ #include "tsrb.h" #include "net/netdev2.h" -#include "net/netdev2_eth.h" +#include "net/netdev2/eth.h" #include "net/eui64.h" #include "net/ethernet.h" diff --git a/drivers/include/net/netdev2_eth.h b/drivers/include/net/netdev2/eth.h similarity index 98% rename from drivers/include/net/netdev2_eth.h rename to drivers/include/net/netdev2/eth.h index dab5190251..9a8bf99186 100644 --- a/drivers/include/net/netdev2_eth.h +++ b/drivers/include/net/netdev2/eth.h @@ -21,7 +21,7 @@ #include -#include "netdev2.h" +#include "net/netdev2.h" #include "net/netopt.h" #ifdef __cplusplus