From 80e05021c730466503c86cbe1700cf6331008f6e Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Mon, 31 Mar 2008 21:52:09 +0200 Subject: ping.c: remove volatile from variables --- net/ping.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'net/ping.c') diff --git a/net/ping.c b/net/ping.c index c4f83d55a6..4d61532b1e 100644 --- a/net/ping.c +++ b/net/ping.c @@ -5,11 +5,11 @@ static ushort PingSeqNo; -int PingSend(void) +static int PingSend(void) { static uchar mac[6]; - volatile IP_t *ip; - volatile ushort *s; + IP_t *ip; + ushort *s; uchar *pkt; /* XXX always send arp request */ @@ -26,7 +26,7 @@ int PingSend(void) pkt = NetArpWaitTxPacket; pkt += NetSetEther(pkt, mac, PROT_IP); - ip = (volatile IP_t *)pkt; + ip = (IP_t *)pkt; /* * Construct an IP and ICMP header. (need to set no fragment bit - XXX) -- cgit v1.2.3