From 1843dc83891e42ca7032ab32041548d510c219a3 Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Thu, 5 Jul 2007 18:01:44 +0200 Subject: [PATCH] svn_rev_329 remove volatile --- net/bootp.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/net/bootp.c b/net/bootp.c index 5ef4cef81..84e6c9108 100644 --- a/net/bootp.c +++ b/net/bootp.c @@ -17,6 +17,7 @@ #include #include +#include #include #include #include "bootp.h" @@ -528,7 +529,7 @@ static int BootpExtended (u8 * e) void BootpRequest (void) { - volatile uchar *pkt, *iphdr; + uchar *pkt, *iphdr; Bootp_t *bp; int ext_len, pktlen, iplen; @@ -716,7 +717,7 @@ static int DhcpMessageType(unsigned char *popt) static void DhcpSendRequestPkt(Bootp_t *bp_offer) { - volatile uchar *pkt, *iphdr; + uchar *pkt, *iphdr; Bootp_t *bp; int pktlen, iplen, extlen; IPaddr_t OfferedIP;