mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 10:39:08 +00:00
net: Remove volatile from net API
Signed-off-by: Joe Hershberger <joe.hershberger@ni.com> Acked-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
0a6deb3251
commit
db288a9602
6 changed files with 41 additions and 42 deletions
|
@ -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. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue