summaryrefslogtreecommitdiff
path: root/nuttx/net/netdev
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-07-04 19:13:08 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-07-04 19:13:08 -0600
commit3285efc508064d44b60120ffe903c13184482869 (patch)
tree3844c1fb247d2e5d8de17b4f390b78ed19e26c65 /nuttx/net/netdev
parent9359459245f11e94dee418e424e44f598bc04039 (diff)
downloadnuttx-3285efc508064d44b60120ffe903c13184482869.tar.gz
nuttx-3285efc508064d44b60120ffe903c13184482869.tar.bz2
nuttx-3285efc508064d44b60120ffe903c13184482869.zip
NET: emoved all includes of uip.h; added includes of ip.h wherever needed. Tried to fix problems of the now missing sneak inclusions because uip.h was removed. There are probably a few of these that were missed.
Diffstat (limited to 'nuttx/net/netdev')
-rw-r--r--nuttx/net/netdev/netdev.h2
-rw-r--r--nuttx/net/netdev/netdev_findbyaddr.c1
-rw-r--r--nuttx/net/netdev/netdev_ioctl.c1
-rw-r--r--nuttx/net/netdev/netdev_rxnotify.c1
-rw-r--r--nuttx/net/netdev/netdev_txnotify.c1
5 files changed, 6 insertions, 0 deletions
diff --git a/nuttx/net/netdev/netdev.h b/nuttx/net/netdev/netdev.h
index 010d82ce1..3fc2d5eb0 100644
--- a/nuttx/net/netdev/netdev.h
+++ b/nuttx/net/netdev/netdev.h
@@ -44,6 +44,8 @@
#include <sys/types.h>
+#include <nuttx/net/ip.h>
+
/****************************************************************************
* Pre-processor Definitions
****************************************************************************/
diff --git a/nuttx/net/netdev/netdev_findbyaddr.c b/nuttx/net/netdev/netdev_findbyaddr.c
index 9aa868b81..9130166c7 100644
--- a/nuttx/net/netdev/netdev_findbyaddr.c
+++ b/nuttx/net/netdev/netdev_findbyaddr.c
@@ -46,6 +46,7 @@
#include <debug.h>
#include <nuttx/net/netdev.h>
+#include <nuttx/net/ip.h>
#include "netdev/netdev.h"
#include "route/route.h"
diff --git a/nuttx/net/netdev/netdev_ioctl.c b/nuttx/net/netdev/netdev_ioctl.c
index f2bcff957..af32a8052 100644
--- a/nuttx/net/netdev/netdev_ioctl.c
+++ b/nuttx/net/netdev/netdev_ioctl.c
@@ -49,6 +49,7 @@
#include <debug.h>
#include <nuttx/net/net.h>
+#include <nuttx/net/ip.h>
#include <net/if.h>
#include <net/route.h>
diff --git a/nuttx/net/netdev/netdev_rxnotify.c b/nuttx/net/netdev/netdev_rxnotify.c
index bb8d90368..d3eba2d1e 100644
--- a/nuttx/net/netdev/netdev_rxnotify.c
+++ b/nuttx/net/netdev/netdev_rxnotify.c
@@ -46,6 +46,7 @@
#include <debug.h>
#include <nuttx/net/netdev.h>
+#include <nuttx/net/ip.h>
#include "netdev/netdev.h"
diff --git a/nuttx/net/netdev/netdev_txnotify.c b/nuttx/net/netdev/netdev_txnotify.c
index 81679ac93..c19f0a7d5 100644
--- a/nuttx/net/netdev/netdev_txnotify.c
+++ b/nuttx/net/netdev/netdev_txnotify.c
@@ -46,6 +46,7 @@
#include <debug.h>
#include <nuttx/net/netdev.h>
+#include <nuttx/net/ip.h>
#include "netdev/netdev.h"