summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/mvme167/network/uti596.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-07-26 21:15:27 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-07-26 21:15:27 +0000
commitdb9ae7078d4fe001139d1fbb7816ef71a3d2f2ae (patch)
treec37d84a677b30f009729315c5ac1f8e89c28ee5c /c/src/lib/libbsp/m68k/mvme167/network/uti596.h
parentchanged version to ss-20000726 (diff)
downloadrtems-db9ae7078d4fe001139d1fbb7816ef71a3d2f2ae.tar.bz2
Patch from Charles-Antoine Gauthier <charles.gauthier@nrc.ca> that
removes warnings from the network.c file and has slight additions to the configuration file to support Java.
Diffstat (limited to '')
-rw-r--r--c/src/lib/libbsp/m68k/mvme167/network/uti596.h10
1 files changed, 5 insertions, 5 deletions
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;