aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/rio/sysmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/char/rio/sysmap.h')
-rw-r--r--drivers/char/rio/sysmap.h23
1 files changed, 11 insertions, 12 deletions
diff --git a/drivers/char/rio/sysmap.h b/drivers/char/rio/sysmap.h
index fdc731393576..e1c6f1160dff 100644
--- a/drivers/char/rio/sysmap.h
+++ b/drivers/char/rio/sysmap.h
@@ -37,27 +37,26 @@
37 37
38#ifndef lint 38#ifndef lint
39#ifdef SCCS_LABELS 39#ifdef SCCS_LABELS
40static char *_rio_sysmap_h_sccs = "@(#)sysmap.h 1.1" ; 40static char *_rio_sysmap_h_sccs = "@(#)sysmap.h 1.1";
41#endif 41#endif
42#endif 42#endif
43 43
44#define SYSTEM_MAP_LEN 64 /* Len of System Map array */ 44#define SYSTEM_MAP_LEN 64 /* Len of System Map array */
45 45
46 46
47typedef struct SYS_MAP SYS_MAP ; 47typedef struct SYS_MAP SYS_MAP;
48typedef struct SYS_MAP_LINK SYS_MAP_LINK ; 48typedef struct SYS_MAP_LINK SYS_MAP_LINK;
49 49
50struct SYS_MAP_LINK { 50struct SYS_MAP_LINK {
51 short id ; /* Unit Id */ 51 short id; /* Unit Id */
52 short link ; /* Id's Link */ 52 short link; /* Id's Link */
53 short been_here ; /* Used by map_gen */ 53 short been_here; /* Used by map_gen */
54 } ; 54};
55 55
56struct SYS_MAP { 56struct SYS_MAP {
57 char serial_num[4] ; 57 char serial_num[4];
58 SYS_MAP_LINK link[4] ; 58 SYS_MAP_LINK link[4];
59 } ; 59};
60 60
61 61
62/*********** end of file ***********/ 62/*********** end of file ***********/
63