diff options
Diffstat (limited to 'include/linux/mmc/sdio_func.h')
-rw-r--r-- | include/linux/mmc/sdio_func.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/mmc/sdio_func.h b/include/linux/mmc/sdio_func.h index 8106d399c414..a8d268c9c276 100644 --- a/include/linux/mmc/sdio_func.h +++ b/include/linux/mmc/sdio_func.h | |||
@@ -16,6 +16,9 @@ | |||
16 | #include <linux/mod_devicetable.h> | 16 | #include <linux/mod_devicetable.h> |
17 | 17 | ||
18 | struct mmc_card; | 18 | struct mmc_card; |
19 | struct sdio_func; | ||
20 | |||
21 | typedef void (sdio_irq_handler_t)(struct sdio_func *); | ||
19 | 22 | ||
20 | /* | 23 | /* |
21 | * SDIO function CIS tuple (unknown to the core) | 24 | * SDIO function CIS tuple (unknown to the core) |
@@ -33,6 +36,7 @@ struct sdio_func_tuple { | |||
33 | struct sdio_func { | 36 | struct sdio_func { |
34 | struct mmc_card *card; /* the card this device belongs to */ | 37 | struct mmc_card *card; /* the card this device belongs to */ |
35 | struct device dev; /* the device */ | 38 | struct device dev; /* the device */ |
39 | sdio_irq_handler_t *irq_handler; /* IRQ callback */ | ||
36 | unsigned int num; /* function number */ | 40 | unsigned int num; /* function number */ |
37 | 41 | ||
38 | unsigned char class; /* standard interface class */ | 42 | unsigned char class; /* standard interface class */ |
@@ -105,6 +109,9 @@ extern void sdio_release_host(struct sdio_func *func); | |||
105 | extern int sdio_enable_func(struct sdio_func *func); | 109 | extern int sdio_enable_func(struct sdio_func *func); |
106 | extern int sdio_disable_func(struct sdio_func *func); | 110 | extern int sdio_disable_func(struct sdio_func *func); |
107 | 111 | ||
112 | extern int sdio_claim_irq(struct sdio_func *func, sdio_irq_handler_t *handler); | ||
113 | extern int sdio_release_irq(struct sdio_func *func); | ||
114 | |||
108 | extern unsigned char sdio_readb(struct sdio_func *func, | 115 | extern unsigned char sdio_readb(struct sdio_func *func, |
109 | unsigned int addr, int *err_ret); | 116 | unsigned int addr, int *err_ret); |
110 | 117 | ||