diff options
Diffstat (limited to 'include/linux/mmc/card.h')
-rw-r--r-- | include/linux/mmc/card.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/linux/mmc/card.h b/include/linux/mmc/card.h index 520d9d29b3b2..a444431e28bd 100644 --- a/include/linux/mmc/card.h +++ b/include/linux/mmc/card.h | |||
@@ -65,8 +65,16 @@ struct sdio_cccr { | |||
65 | high_speed:1; | 65 | high_speed:1; |
66 | }; | 66 | }; |
67 | 67 | ||
68 | struct sdio_cis { | ||
69 | unsigned short vendor; | ||
70 | unsigned short device; | ||
71 | unsigned short blksize; | ||
72 | unsigned int max_dtr; | ||
73 | }; | ||
74 | |||
68 | struct mmc_host; | 75 | struct mmc_host; |
69 | struct sdio_func; | 76 | struct sdio_func; |
77 | struct sdio_func_tuple; | ||
70 | 78 | ||
71 | #define SDIO_MAX_FUNCS 7 | 79 | #define SDIO_MAX_FUNCS 7 |
72 | 80 | ||
@@ -98,7 +106,9 @@ struct mmc_card { | |||
98 | 106 | ||
99 | unsigned int sdio_funcs; /* number of SDIO functions */ | 107 | unsigned int sdio_funcs; /* number of SDIO functions */ |
100 | struct sdio_cccr cccr; /* common card info */ | 108 | struct sdio_cccr cccr; /* common card info */ |
109 | struct sdio_cis cis; /* common tuple info */ | ||
101 | struct sdio_func *sdio_func[SDIO_MAX_FUNCS]; /* SDIO functions (devices) */ | 110 | struct sdio_func *sdio_func[SDIO_MAX_FUNCS]; /* SDIO functions (devices) */ |
111 | struct sdio_func_tuple *tuples; /* unknown common tuples */ | ||
102 | }; | 112 | }; |
103 | 113 | ||
104 | #define mmc_card_mmc(c) ((c)->type == MMC_TYPE_MMC) | 114 | #define mmc_card_mmc(c) ((c)->type == MMC_TYPE_MMC) |