diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-26 20:27:31 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-26 20:27:31 -0700 |
commit | bdee6ac7d1c9a4a9b65db1753b0bfa0b61361dde (patch) | |
tree | d2d260a3aa7e0902be023c0fbdb52ec26dbd6609 /drivers/mmc/core/core.h | |
parent | 4836e3007882984279ca63d3c42bf0b14616eb78 (diff) | |
parent | deec9ae31e6079551ce9260d29a4cf83e5b19a83 (diff) | |
download | linux-stable-bdee6ac7d1c9a4a9b65db1753b0bfa0b61361dde.tar.gz linux-stable-bdee6ac7d1c9a4a9b65db1753b0bfa0b61361dde.tar.bz2 linux-stable-bdee6ac7d1c9a4a9b65db1753b0bfa0b61361dde.zip |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/drzeus/mmc
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/drzeus/mmc:
atmel-mci: debugfs support
mmc: Add per-card debugfs support
mmc: Export internal host state through debugfs
imxmmc: fix crash when no platform data is provided
imxmmc: fix platform resources
imxmmc: remove DEBUG definition
mmc_spi: put signals to low power off fix
Diffstat (limited to 'drivers/mmc/core/core.h')
-rw-r--r-- | drivers/mmc/core/core.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/mmc/core/core.h b/drivers/mmc/core/core.h index cdb332b7dedc..c819effa1032 100644 --- a/drivers/mmc/core/core.h +++ b/drivers/mmc/core/core.h @@ -52,5 +52,12 @@ int mmc_attach_sdio(struct mmc_host *host, u32 ocr); extern int use_spi_crc; +/* Debugfs information for hosts and cards */ +void mmc_add_host_debugfs(struct mmc_host *host); +void mmc_remove_host_debugfs(struct mmc_host *host); + +void mmc_add_card_debugfs(struct mmc_card *card); +void mmc_remove_card_debugfs(struct mmc_card *card); + #endif |