diff options
| author | Joe Hershberger <joe.hershberger@ni.com> | 2012-05-15 08:59:04 +0000 | 
|---|---|---|
| committer | Joe Hershberger <joe.hershberger@ni.com> | 2012-05-15 17:10:04 -0500 | 
| commit | db288a96027fa1cb3f8a53f330724f864224a56c (patch) | |
| tree | 03b8f695f2789f2ede97f17858b4e892c19bf422 /net/tftp.c | |
| parent | 0a6deb3251a68b5be640ab1b848ca67e906b75ce (diff) | |
| download | olio-uboot-2014.01-db288a96027fa1cb3f8a53f330724f864224a56c.tar.xz olio-uboot-2014.01-db288a96027fa1cb3f8a53f330724f864224a56c.zip | |
net: Remove volatile from net API
Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'net/tftp.c')
| -rw-r--r-- | net/tftp.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/net/tftp.c b/net/tftp.c index 7aa3e23c9..e62f2299f 100644 --- a/net/tftp.c +++ b/net/tftp.c @@ -310,9 +310,9 @@ static void  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. */ |