aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/mmc
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/mmc')
-rw-r--r--include/linux/mmc/sdio_func.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/linux/mmc/sdio_func.h b/include/linux/mmc/sdio_func.h
index 13a1a9ca4b66..5c56df196287 100644
--- a/include/linux/mmc/sdio_func.h
+++ b/include/linux/mmc/sdio_func.h
@@ -49,5 +49,17 @@ struct sdio_driver {
49extern int sdio_register_driver(struct sdio_driver *); 49extern int sdio_register_driver(struct sdio_driver *);
50extern void sdio_unregister_driver(struct sdio_driver *); 50extern void sdio_unregister_driver(struct sdio_driver *);
51 51
52/*
53 * SDIO I/O operations
54 */
55extern void sdio_claim_host(struct sdio_func *func);
56extern void sdio_release_host(struct sdio_func *func);
57
58extern unsigned char sdio_readb(struct sdio_func *func,
59 unsigned int addr, int *err_ret);
60
61extern void sdio_writeb(struct sdio_func *func, unsigned char b,
62 unsigned int addr, int *err_ret);
63
52#endif 64#endif
53 65