diff options
author | Jiri Slaby <jirislaby@gmail.com> | 2008-02-07 03:16:33 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-07 11:42:33 -0500 |
commit | f6de0c9864c10d17f2473940c5f81718a5064bd8 (patch) | |
tree | 5cef6d08b8d66224eb48ac3429c98734210e19ee /drivers/char/rocket_int.h | |
parent | 68562b79217ce04a30aaf781de1e6dfa84e73fbe (diff) |
Char: rocket, remove useless macros
Signed-off-by: Jiri Slaby <jirislaby@gmail.com>
Acked-by: Alan Cox <alan@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/char/rocket_int.h')
-rw-r--r-- | drivers/char/rocket_int.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/drivers/char/rocket_int.h b/drivers/char/rocket_int.h index c3aab522a456..f3a75791b811 100644 --- a/drivers/char/rocket_int.h +++ b/drivers/char/rocket_int.h | |||
@@ -105,12 +105,6 @@ static inline unsigned short sInW(unsigned short port) | |||
105 | #define AIOPID_NULL -1 /* no AIOP or channel exists */ | 105 | #define AIOPID_NULL -1 /* no AIOP or channel exists */ |
106 | #define AIOPID_0001 0x0001 /* AIOP release 1 */ | 106 | #define AIOPID_0001 0x0001 /* AIOP release 1 */ |
107 | 107 | ||
108 | #define NULLDEV -1 /* identifies non-existant device */ | ||
109 | #define NULLCTL -1 /* identifies non-existant controller */ | ||
110 | #define NULLCTLPTR (CONTROLLER_T *)0 /* identifies non-existant controller */ | ||
111 | #define NULLAIOP -1 /* identifies non-existant AIOP */ | ||
112 | #define NULLCHAN -1 /* identifies non-existant channel */ | ||
113 | |||
114 | /************************************************************************ | 108 | /************************************************************************ |
115 | Global Register Offsets - Direct Access - Fixed values | 109 | Global Register Offsets - Direct Access - Fixed values |
116 | ************************************************************************/ | 110 | ************************************************************************/ |
@@ -1187,9 +1181,6 @@ struct r_port { | |||
1187 | #define ROCKET_CLOSING 0x40000000 /* Serial port is closing */ | 1181 | #define ROCKET_CLOSING 0x40000000 /* Serial port is closing */ |
1188 | #define ROCKET_NORMAL_ACTIVE 0x20000000 /* Normal port is active */ | 1182 | #define ROCKET_NORMAL_ACTIVE 0x20000000 /* Normal port is active */ |
1189 | 1183 | ||
1190 | /* tty subtypes */ | ||
1191 | #define SERIAL_TYPE_NORMAL 1 | ||
1192 | |||
1193 | /* | 1184 | /* |
1194 | * Assigned major numbers for the Comtrol Rocketport | 1185 | * Assigned major numbers for the Comtrol Rocketport |
1195 | */ | 1186 | */ |
@@ -1240,12 +1231,3 @@ struct r_port { | |||
1240 | /* Compact PCI device */ | 1231 | /* Compact PCI device */ |
1241 | #define PCI_DEVICE_ID_CRP16INTF 0x0903 /* Rocketport Compact PCI 16 port w/external I/F */ | 1232 | #define PCI_DEVICE_ID_CRP16INTF 0x0903 /* Rocketport Compact PCI 16 port w/external I/F */ |
1242 | 1233 | ||
1243 | #define TTY_GET_LINE(t) t->index | ||
1244 | #define TTY_DRIVER_MINOR_START(t) t->driver->minor_start | ||
1245 | #define TTY_DRIVER_SUBTYPE(t) t->driver->subtype | ||
1246 | #define TTY_DRIVER_NAME(t) t->driver->name | ||
1247 | #define TTY_DRIVER_NAME_BASE(t) t->driver->name_base | ||
1248 | #define TTY_DRIVER_FLUSH_BUFFER_EXISTS(t) t->driver->flush_buffer | ||
1249 | #define TTY_DRIVER_FLUSH_BUFFER(t) t->driver->flush_buffer(t) | ||
1250 | |||
1251 | |||