diff options
author | Alan Cox <alan@lxorguk.ukuu.org.uk> | 2006-03-24 06:18:24 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-24 10:33:28 -0500 |
commit | 74769abfcb430b839914f3fe91e23a4f628d9553 (patch) | |
tree | af7443e43f236d4d9e6c87ef777989989f1079ec /drivers/char/rio/parmmap.h | |
parent | 10e705f83c3e796893a70fb872895ba604901166 (diff) |
[PATCH] rio: more header cleanup
Strip some of the typedef mess out Remove a small subset of unused defines
and the like.
Signed-off-by: Alan Cox <alan@redhat.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/char/rio/parmmap.h')
-rw-r--r-- | drivers/char/rio/parmmap.h | 54 |
1 files changed, 27 insertions, 27 deletions
diff --git a/drivers/char/rio/parmmap.h b/drivers/char/rio/parmmap.h index e24acc1d1844..c4085fbf9ec6 100644 --- a/drivers/char/rio/parmmap.h +++ b/drivers/char/rio/parmmap.h | |||
@@ -48,39 +48,39 @@ typedef struct PARM_MAP PARM_MAP; | |||
48 | 48 | ||
49 | struct PARM_MAP { | 49 | struct PARM_MAP { |
50 | PHB_ptr phb_ptr; /* Pointer to the PHB array */ | 50 | PHB_ptr phb_ptr; /* Pointer to the PHB array */ |
51 | WORD_ptr phb_num_ptr; /* Ptr to Number of PHB's */ | 51 | u16 phb_num_ptr; /* Ptr to Number of PHB's */ |
52 | FREE_LIST_ptr free_list; /* Free List pointer */ | 52 | FREE_LIST_ptr free_list; /* Free List pointer */ |
53 | FREE_LIST_ptr free_list_end; /* Free List End pointer */ | 53 | FREE_LIST_ptr free_list_end; /* Free List End pointer */ |
54 | Q_BUF_ptr_ptr q_free_list_ptr; /* Ptr to Q_BUF variable */ | 54 | Q_BUF_ptr_ptr q_free_list_ptr; /* Ptr to Q_BUF variable */ |
55 | BYTE_ptr unit_id_ptr; /* Unit Id */ | 55 | u16 unit_id_ptr; /* Unit Id */ |
56 | LPB_ptr link_str_ptr; /* Link Structure Array */ | 56 | LPB_ptr link_str_ptr; /* Link Structure Array */ |
57 | BYTE_ptr bootloader_1; /* 1st Stage Boot Loader */ | 57 | u16 bootloader_1; /* 1st Stage Boot Loader */ |
58 | BYTE_ptr bootloader_2; /* 2nd Stage Boot Loader */ | 58 | u16 bootloader_2; /* 2nd Stage Boot Loader */ |
59 | WORD_ptr port_route_map_ptr; /* Port Route Map */ | 59 | u16 port_route_map_ptr; /* Port Route Map */ |
60 | ROUTE_STR_ptr route_ptr; /* Unit Route Map */ | 60 | ROUTE_STR_ptr route_ptr; /* Unit Route Map */ |
61 | NUMBER_ptr map_present; /* Route Map present */ | 61 | u16 map_present; /* Route Map present */ |
62 | NUMBER pkt_num; /* Total number of packets */ | 62 | s16 pkt_num; /* Total number of packets */ |
63 | NUMBER q_num; /* Total number of Q packets */ | 63 | s16 q_num; /* Total number of Q packets */ |
64 | WORD buffers_per_port; /* Number of buffers per port */ | 64 | u16 buffers_per_port; /* Number of buffers per port */ |
65 | WORD heap_size; /* Initial size of heap */ | 65 | u16 heap_size; /* Initial size of heap */ |
66 | WORD heap_left; /* Current Heap left */ | 66 | u16 heap_left; /* Current Heap left */ |
67 | WORD error; /* Error code */ | 67 | u16 error; /* Error code */ |
68 | WORD tx_max; /* Max number of tx pkts per phb */ | 68 | u16 tx_max; /* Max number of tx pkts per phb */ |
69 | WORD rx_max; /* Max number of rx pkts per phb */ | 69 | u16 rx_max; /* Max number of rx pkts per phb */ |
70 | WORD rx_limit; /* For high / low watermarks */ | 70 | u16 rx_limit; /* For high / low watermarks */ |
71 | NUMBER links; /* Links to use */ | 71 | s16 links; /* Links to use */ |
72 | NUMBER timer; /* Interrupts per second */ | 72 | s16 timer; /* Interrupts per second */ |
73 | RUP_ptr rups; /* Pointer to the RUPs */ | 73 | RUP_ptr rups; /* Pointer to the RUPs */ |
74 | WORD max_phb; /* Mostly for debugging */ | 74 | u16 max_phb; /* Mostly for debugging */ |
75 | WORD living; /* Just increments!! */ | 75 | u16 living; /* Just increments!! */ |
76 | WORD init_done; /* Initialisation over */ | 76 | u16 init_done; /* Initialisation over */ |
77 | WORD booting_link; | 77 | u16 booting_link; |
78 | WORD idle_count; /* Idle time counter */ | 78 | u16 idle_count; /* Idle time counter */ |
79 | WORD busy_count; /* Busy counter */ | 79 | u16 busy_count; /* Busy counter */ |
80 | WORD idle_control; /* Control Idle Process */ | 80 | u16 idle_control; /* Control Idle Process */ |
81 | WORD tx_intr; /* TX interrupt pending */ | 81 | u16 tx_intr; /* TX interrupt pending */ |
82 | WORD rx_intr; /* RX interrupt pending */ | 82 | u16 rx_intr; /* RX interrupt pending */ |
83 | WORD rup_intr; /* RUP interrupt pending */ | 83 | u16 rup_intr; /* RUP interrupt pending */ |
84 | }; | 84 | }; |
85 | 85 | ||
86 | #endif | 86 | #endif |