summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorJoe Hershberger <joe.hershberger@ni.com>2012-05-23 07:58:09 +0000
committerJoe Hershberger <joe.hershberger@ni.com>2012-05-23 17:46:15 -0500
commite0a630795b35f3137a3204e0d8e5fea928f8962b (patch)
treef72792762c7481f2e0ef550de5dceaa40930ffa3 /net
parent738853bb6d290dc4b52d8c2989c0998d7aa26913 (diff)
downloadtalos-obmc-uboot-e0a630795b35f3137a3204e0d8e5fea928f8962b.tar.gz
talos-obmc-uboot-e0a630795b35f3137a3204e0d8e5fea928f8962b.zip
net: cosmetic: Un-typedef ICMP_t
Remove typedef and lower-case name Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
Diffstat (limited to 'net')
-rw-r--r--net/net.c2
-rw-r--r--net/ping.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/net/net.c b/net/net.c
index 6d34254043..4cdd9cd0f2 100644
--- a/net/net.c
+++ b/net/net.c
@@ -825,7 +825,7 @@ static inline struct ip_udp_hdr *NetDefragment(struct ip_udp_hdr *ip, int *lenp)
static void receive_icmp(struct ip_udp_hdr *ip, int len,
IPaddr_t src_ip, struct ethernet_hdr *et)
{
- ICMP_t *icmph = (ICMP_t *)&ip->udp_src;
+ struct icmp_hdr *icmph = (struct icmp_hdr *)&ip->udp_src;
switch (icmph->type) {
case ICMP_REDIRECT:
diff --git a/net/ping.c b/net/ping.c
index 04a594cf53..3102521c06 100644
--- a/net/ping.c
+++ b/net/ping.c
@@ -100,7 +100,7 @@ void ping_start(void)
void ping_receive(struct ethernet_hdr *et, struct ip_udp_hdr *ip, int len)
{
- ICMP_t *icmph = (ICMP_t *)&(ip->udp_src);
+ struct icmp_hdr *icmph = (struct icmp_hdr *)&ip->udp_src;
IPaddr_t src_ip;
switch (icmph->type) {
OpenPOWER on IntegriCloud