aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/isicom.h
diff options
context:
space:
mode:
authorJiri Slaby <xslaby@fi.muni.cz>2006-01-09 23:54:26 -0500
committerLinus Torvalds <torvalds@g5.osdl.org>2006-01-10 11:02:01 -0500
commita547dfe9563c49fd0f9743640e01d1d652119ec7 (patch)
tree5000f624e91855ce82b620debb98681a2cd98ed4 /include/linux/isicom.h
parente65c1db19fe8177fa2da53e3e0bddffe585b2d47 (diff)
[PATCH] char/isicom: More whitespaces and coding style
Wrap all the code to 80 chars on a line. `}\nelse' changed to `} else'. Clean whitespaces in header file. Signed-off-by: Jiri Slaby <xslaby@fi.muni.cz> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux/isicom.h')
-rw-r--r--include/linux/isicom.h21
1 files changed, 10 insertions, 11 deletions
diff --git a/include/linux/isicom.h b/include/linux/isicom.h
index ba5291a9f993..45b3d48f0978 100644
--- a/include/linux/isicom.h
+++ b/include/linux/isicom.h
@@ -9,7 +9,7 @@
9#define YES 1 9#define YES 1
10#define NO 0 10#define NO 0
11 11
12/* 12/*
13 * ISICOM Driver definitions ... 13 * ISICOM Driver definitions ...
14 * 14 *
15 */ 15 */
@@ -20,8 +20,8 @@
20 * PCI definitions 20 * PCI definitions
21 */ 21 */
22 22
23 #define DEVID_COUNT 9 23#define DEVID_COUNT 9
24 #define VENDOR_ID 0x10b5 24#define VENDOR_ID 0x10b5
25 25
26/* 26/*
27 * These are now officially allocated numbers 27 * These are now officially allocated numbers
@@ -31,9 +31,9 @@
31#define ISICOM_CMAJOR 113 /* callout */ 31#define ISICOM_CMAJOR 113 /* callout */
32#define ISICOM_MAGIC (('M' << 8) | 'T') 32#define ISICOM_MAGIC (('M' << 8) | 'T')
33 33
34#define WAKEUP_CHARS 256 /* hard coded for now */ 34#define WAKEUP_CHARS 256 /* hard coded for now */
35#define TX_SIZE 254 35#define TX_SIZE 254
36 36
37#define BOARD_COUNT 4 37#define BOARD_COUNT 4
38#define PORT_COUNT (BOARD_COUNT*16) 38#define PORT_COUNT (BOARD_COUNT*16)
39 39
@@ -66,12 +66,12 @@
66#define BOARD(line) (((line) >> 4) & 0x3) 66#define BOARD(line) (((line) >> 4) & 0x3)
67 67
68 /* isi kill queue bitmap */ 68 /* isi kill queue bitmap */
69 69
70#define ISICOM_KILLTX 0x01 70#define ISICOM_KILLTX 0x01
71#define ISICOM_KILLRX 0x02 71#define ISICOM_KILLRX 0x02
72 72
73 /* isi_board status bitmap */ 73 /* isi_board status bitmap */
74 74
75#define FIRMWARE_LOADED 0x0001 75#define FIRMWARE_LOADED 0x0001
76#define BOARD_ACTIVE 0x0002 76#define BOARD_ACTIVE 0x0002
77 77
@@ -85,9 +85,8 @@
85#define ISI_RTS 0x0200 85#define ISI_RTS 0x0200
86 86
87 87
88#define ISI_TXOK 0x0001 88#define ISI_TXOK 0x0001
89 89
90#endif /* __KERNEL__ */ 90#endif /* __KERNEL__ */
91 91
92#endif /* ISICOM_H */ 92#endif /* ISICOM_H */
93