diff options
author | Michael Brown <mcb30@etherboot.org> | 2006-08-08 17:44:25 +0000 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2006-08-08 17:44:25 +0000 |
commit | 68e33224efd8f2116cd107a84d478db761982d85 (patch) | |
tree | 2729aab0859a78a94c1e1f9c7b6576f372141110 /src/net/ipv4.c | |
parent | d2bdf815050ce7f394ef7f860f746ccf894fe787 (diff) | |
download | ipxe-68e33224efd8f2116cd107a84d478db761982d85.tar.gz |
gcc3 compatibility: removed ARP_NET_PROTOCOL().
Diffstat (limited to 'src/net/ipv4.c')
-rw-r--r-- | src/net/ipv4.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/net/ipv4.c b/src/net/ipv4.c index bfef358d..4c07c2c9 100644 --- a/src/net/ipv4.c +++ b/src/net/ipv4.c @@ -530,9 +530,7 @@ struct tcpip_net_protocol ipv4_tcpip_protocol = { TCPIP_NET_PROTOCOL ( ipv4_tcpip_protocol ); /** IPv4 ARP protocol */ -struct arp_net_protocol ipv4_arp_protocol = { +struct arp_net_protocol ipv4_arp_protocol __arp_net_protocol = { .net_protocol = &ipv4_protocol, .check = ipv4_arp_check, }; - -ARP_NET_PROTOCOL ( ipv4_arp_protocol ); |