diff options
author | Dominik Brodowski <linux@dominikbrodowski.net> | 2010-07-24 11:43:10 -0400 |
---|---|---|
committer | Dominik Brodowski <linux@dominikbrodowski.net> | 2010-08-03 03:04:13 -0400 |
commit | a3d0d4d8dd45779b6e174a8567ffb9b485e472af (patch) | |
tree | 0b826ed221d8ce2f2c00a758e336470791f9386e /drivers/pcmcia | |
parent | 90abdc3b973229bae98dd96649d9f7106cc177a4 (diff) |
pcmcia: move local definitions out of include/pcmcia/cs.h
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Diffstat (limited to 'drivers/pcmcia')
-rw-r--r-- | drivers/pcmcia/cistpl.c | 3 | ||||
-rw-r--r-- | drivers/pcmcia/cs_internal.h | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/drivers/pcmcia/cistpl.c b/drivers/pcmcia/cistpl.c index 1733fab469a1..91414a0ddc44 100644 --- a/drivers/pcmcia/cistpl.c +++ b/drivers/pcmcia/cistpl.c | |||
@@ -53,6 +53,9 @@ static const u_int exponent[] = { | |||
53 | /* Upper limit on reasonable # of tuples */ | 53 | /* Upper limit on reasonable # of tuples */ |
54 | #define MAX_TUPLES 200 | 54 | #define MAX_TUPLES 200 |
55 | 55 | ||
56 | /* Bits in IRQInfo1 field */ | ||
57 | #define IRQ_INFO2_VALID 0x10 | ||
58 | |||
56 | /* 16-bit CIS? */ | 59 | /* 16-bit CIS? */ |
57 | static int cis_width; | 60 | static int cis_width; |
58 | module_param(cis_width, int, 0444); | 61 | module_param(cis_width, int, 0444); |
diff --git a/drivers/pcmcia/cs_internal.h b/drivers/pcmcia/cs_internal.h index a85558fc71f3..511ac753b9d9 100644 --- a/drivers/pcmcia/cs_internal.h +++ b/drivers/pcmcia/cs_internal.h | |||
@@ -26,6 +26,9 @@ | |||
26 | /* Flags in client state */ | 26 | /* Flags in client state */ |
27 | #define CLIENT_WIN_REQ(i) (0x1<<(i)) | 27 | #define CLIENT_WIN_REQ(i) (0x1<<(i)) |
28 | 28 | ||
29 | /* Flag to access all functions */ | ||
30 | #define BIND_FN_ALL 0xff | ||
31 | |||
29 | /* Each card function gets one of these guys */ | 32 | /* Each card function gets one of these guys */ |
30 | typedef struct config_t { | 33 | typedef struct config_t { |
31 | struct kref ref; | 34 | struct kref ref; |