diff options
author | Dominik Brodowski <linux@dominikbrodowski.net> | 2008-08-31 10:00:42 -0400 |
---|---|---|
committer | Dominik Brodowski <linux@dominikbrodowski.net> | 2008-08-31 10:00:42 -0400 |
commit | a45b3fb19ba1e4dfc3fc53563a072612092930a9 (patch) | |
tree | b973d46c7f9002d403bbd09d959b029fb9144351 /include/pcmcia/ds.h | |
parent | 272433e088f843dc4dd5a5ad38dd68b9a93dcebf (diff) |
pcmcia: ioctl-internal definitions
cisinfo_t and cs_status_t are only used by the (deprecated) PCMCIA
ioctl. Therefore, move them out of the way.
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Diffstat (limited to 'include/pcmcia/ds.h')
-rw-r--r-- | include/pcmcia/ds.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/pcmcia/ds.h b/include/pcmcia/ds.h index 5fb61952bce8..a2be80b9a095 100644 --- a/include/pcmcia/ds.h +++ b/include/pcmcia/ds.h | |||
@@ -367,6 +367,17 @@ typedef struct config_info_t { | |||
367 | u_int IOAddrLines; | 367 | u_int IOAddrLines; |
368 | } config_info_t; | 368 | } config_info_t; |
369 | 369 | ||
370 | /* For ValidateCIS */ | ||
371 | typedef struct cisinfo_t { | ||
372 | u_int Chains; | ||
373 | } cisinfo_t; | ||
374 | |||
375 | typedef struct cs_status_t { | ||
376 | u_char Function; | ||
377 | event_t CardState; | ||
378 | event_t SocketState; | ||
379 | } cs_status_t; | ||
380 | |||
370 | typedef union ds_ioctl_arg_t { | 381 | typedef union ds_ioctl_arg_t { |
371 | adjust_t adjust; | 382 | adjust_t adjust; |
372 | config_info_t config; | 383 | config_info_t config; |