From db9ae7078d4fe001139d1fbb7816ef71a3d2f2ae Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Wed, 26 Jul 2000 21:15:27 +0000 Subject: Patch from Charles-Antoine Gauthier that removes warnings from the network.c file and has slight additions to the configuration file to support Java. --- c/src/lib/libbsp/m68k/mvme167/network/uti596.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'c/src/lib/libbsp/m68k/mvme167/network/uti596.h') diff --git a/c/src/lib/libbsp/m68k/mvme167/network/uti596.h b/c/src/lib/libbsp/m68k/mvme167/network/uti596.h index d1d3d1ae2e..556945a5fe 100644 --- a/c/src/lib/libbsp/m68k/mvme167/network/uti596.h +++ b/c/src/lib/libbsp/m68k/mvme167/network/uti596.h @@ -208,7 +208,7 @@ typedef volatile struct i596_selftest { typedef volatile struct i596_cmd { unsigned short status; unsigned short command; - struct i596_cmd *next; + volatile struct i596_cmd *next; } i596_cmd; typedef volatile struct i596_nop { @@ -227,7 +227,7 @@ typedef volatile struct i596_configure { typedef volatile struct i596_tx { i596_cmd cmd; - struct i596_tbd *pTbd; + volatile struct i596_tbd *pTbd; unsigned short count; unsigned short pad; char data[6]; @@ -250,7 +250,7 @@ typedef volatile struct i596_dump { typedef volatile struct i596_tbd { unsigned short size; unsigned short pad; - struct i596_tbd *next; + volatile struct i596_tbd *next; char *data; } i596_tbd; @@ -261,7 +261,7 @@ typedef volatile struct i596_tbd { typedef volatile struct i596_rbd { unsigned short count; unsigned short offset; - struct i596_rbd *next; + volatile struct i596_rbd *next; char *data; unsigned short size; unsigned short pad; @@ -273,7 +273,7 @@ typedef volatile struct i596_rbd { typedef volatile struct i596_rfd { unsigned short stat; unsigned short cmd; - struct i596_rfd *next; + volatile struct i596_rfd *next; i596_rbd *pRbd; unsigned short count; unsigned short size; -- cgit v1.2.3