diff options
author | Haavard Skinnemoen <haavard.skinnemoen@atmel.com> | 2008-07-24 16:18:57 +0400 |
---|---|---|
committer | Pierre Ossman <drzeus@drzeus.cx> | 2008-07-27 03:26:16 +0400 |
commit | 6edd8ee60ac9b974bd6ec3b1bcb2aab02762fa8c (patch) | |
tree | 0f24dc879d9645935974489d152dd83815fcff68 /include/linux/mmc/host.h | |
parent | c5d5e9c40fc6cabedd5fdc7441e6e9d37f5c9bba (diff) | |
download | linux-6edd8ee60ac9b974bd6ec3b1bcb2aab02762fa8c.tar.xz |
mmc: Export internal host state through debugfs
When CONFIG_DEBUG_FS is set, create a few files under /sys/kernel/debug
containing information about an mmc host's internal state. Currently,
just a single file is created, "ios", which contains information about
the current operating parameters for the bus (clock speed, bus width,
etc.)
Host drivers can add additional files and directories under the host's
root directory by passing the debugfs_root field in struct mmc_host as
the 'parent' parameter to debugfs_create_*.
Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
Diffstat (limited to 'include/linux/mmc/host.h')
-rw-r--r-- | include/linux/mmc/host.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/mmc/host.h b/include/linux/mmc/host.h index 10a2080086ca..9c288c909878 100644 --- a/include/linux/mmc/host.h +++ b/include/linux/mmc/host.h @@ -157,6 +157,8 @@ struct mmc_host { struct led_trigger *led; /* activity led */ #endif + struct dentry *debugfs_root; + unsigned long private[0] ____cacheline_aligned; }; |