commit | db288a96027fa1cb3f8a53f330724f864224a56c | [log] [tgz] |
---|---|---|
author | Joe Hershberger <joe.hershberger@ni.com> | Tue May 15 08:59:04 2012 +0000 |
committer | Joe Hershberger <joe.hershberger@ni.com> | Tue May 15 17:10:04 2012 -0500 |
tree | 03b8f695f2789f2ede97f17858b4e892c19bf422 | |
parent | 0a6deb3251a68b5be640ab1b848ca67e906b75ce [diff] [blame] |
net: Remove volatile from net API Signed-off-by: Joe Hershberger <joe.hershberger@ni.com> Acked-by: Simon Glass <sjg@chromium.org>
diff --git a/net/tftp.c b/net/tftp.c index 7aa3e23..e62f229 100644 --- a/net/tftp.c +++ b/net/tftp.c
@@ -310,9 +310,9 @@ TftpSend(void) { uchar *pkt; - volatile uchar *xp; - int len = 0; - volatile ushort *s; + uchar *xp; + int len = 0; + ushort *s; #ifdef CONFIG_MCAST_TFTP /* Multicast TFTP.. non-MasterClients do not ACK data. */