]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
pcmcia: ioctl-internal definitions
authorDominik Brodowski <linux@dominikbrodowski.net>
Sun, 31 Aug 2008 14:00:42 +0000 (16:00 +0200)
committerDominik Brodowski <linux@dominikbrodowski.net>
Sun, 31 Aug 2008 14:00:42 +0000 (16:00 +0200)
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>
include/pcmcia/cistpl.h
include/pcmcia/cs.h
include/pcmcia/ds.h

index 026323bc47af20e51bfb45cb515a4549e7eedccd..cfdd5af77dcc92d49eaada6ad6726c24e52cc81a 100644 (file)
@@ -573,11 +573,6 @@ typedef struct tuple_t {
 #define TUPLE_RETURN_LINK      0x01
 #define TUPLE_RETURN_COMMON    0x02
 
-/* For ValidateCIS */
-typedef struct cisinfo_t {
-    u_int      Chains;
-} cisinfo_t;
-
 #define CISTPL_MAX_CIS_SIZE    0x200
 
 #endif /* LINUX_CISTPL_H */
index 6944a74d3a7c56587d7300034463b798786ad0ba..904468a191ef43c46c8a7fa091967a4f9f09e1c5 100644 (file)
@@ -201,12 +201,6 @@ typedef struct win_req_t {
 #define WIN_BAR_MASK           0xe000
 #define WIN_BAR_SHIFT          13
 
-typedef struct cs_status_t {
-    u_char     Function;
-    event_t    CardState;
-    event_t    SocketState;
-} cs_status_t;
-
 typedef struct error_info_t {
     int                func;
     int                retcode;
index 5fb61952bce82515623fb654533150b5382dac51..a2be80b9a095fcd1bb955af8d2eacd75eafdddec 100644 (file)
@@ -367,6 +367,17 @@ typedef struct config_info_t {
        u_int                   IOAddrLines;
 } config_info_t;
 
+/* For ValidateCIS */
+typedef struct cisinfo_t {
+       u_int                   Chains;
+} cisinfo_t;
+
+typedef struct cs_status_t {
+       u_char                  Function;
+       event_t                 CardState;
+       event_t                 SocketState;
+} cs_status_t;
+
 typedef union ds_ioctl_arg_t {
        adjust_t                adjust;
        config_info_t           config;