From d01102573821393af9572e96cb4edd0c8f01af84 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Thu, 15 Jan 2015 08:03:56 -0600 Subject: - 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 --- nuttx/drivers/net/e1000.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nuttx/drivers/net/e1000.c') 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. -- cgit v1.2.3