summaryrefslogtreecommitdiff
path: root/nuttx/drivers/net/e1000.c
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2015-01-15 08:03:56 -0600
committerGregory Nutt <gnutt@nuttx.org>2015-01-15 08:03:56 -0600
commitd01102573821393af9572e96cb4edd0c8f01af84 (patch)
treeb46c182ec342e351f0dc17534dd101ac93684b50 /nuttx/drivers/net/e1000.c
parent475bd20ef9ae32104f844eb015ad685e2b8ccd99 (diff)
downloadpx4-nuttx-d01102573821393af9572e96cb4edd0c8f01af84.tar.gz
px4-nuttx-d01102573821393af9572e96cb4edd0c8f01af84.tar.bz2
px4-nuttx-d01102573821393af9572e96cb4edd0c8f01af84.zip
- Rename devif_input() ipv4_input()
- Copy net/devif/devif_input.c to ipv6_input.c. Remove all IPv4-specific logic. - Rename net/devif/devif_input.c to ipv4_input.c. Remove all IPv6-specific logic - Split IPv4 header structure out as net_ipv4hdr_s from net_iphdr_s
Diffstat (limited to 'nuttx/drivers/net/e1000.c')
-rw-r--r--nuttx/drivers/net/e1000.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/drivers/net/e1000.c b/nuttx/drivers/net/e1000.c
index 474daf8f3..017df480d 100644
--- a/nuttx/drivers/net/e1000.c
+++ b/nuttx/drivers/net/e1000.c
@@ -574,7 +574,7 @@ static void e1000_receive(struct e1000_dev *e1000)
#endif
{
arp_ipin(&e1000->netdev);
- devif_input(&e1000->netdev);
+ ipv4_input(&e1000->netdev);
/* If the above function invocation resulted in data that should be
* sent out on the network, the field d_len will set to a value > 0.