diff options
author | Mian Yousaf Kaukab <mian.yousaf.kaukab@stericsson.com> | 2012-01-27 11:35:41 +0100 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2013-02-04 08:31:46 +0000 |
commit | 1d843a6c8c2067615fea0ff8cb62d4a5c4a6f8ae (patch) | |
tree | 1675f7b8f36d8703cac6086d49b81ab9cfc542f6 /include/linux/mfd/abx500 | |
parent | 42002c6de9ee1916a118d6a732c533bfe138ed6f (diff) | |
download | linux-1d843a6c8c2067615fea0ff8cb62d4a5c4a6f8ae.tar.gz linux-1d843a6c8c2067615fea0ff8cb62d4a5c4a6f8ae.tar.bz2 linux-1d843a6c8c2067615fea0ff8cb62d4a5c4a6f8ae.zip |
mfd: ab8500-core: Allow the possibility to dump all AB8500 registers
Implement an API so that a user may dump all AB8500 registers
via debugfs file access.
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Signed-off-by: Mian Yousaf Kaukab <mian.yousaf.kaukab@stericsson.com>
Reviewed-by: Linus WALLEIJ <linus.walleij@stericsson.com>
Reviewed-by: Jonas ABERG <jonas.aberg@stericsson.com>
Diffstat (limited to 'include/linux/mfd/abx500')
-rw-r--r-- | include/linux/mfd/abx500/ab8500.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/mfd/abx500/ab8500.h b/include/linux/mfd/abx500/ab8500.h index 5251bca56326..dbec7b00ea83 100644 --- a/include/linux/mfd/abx500/ab8500.h +++ b/include/linux/mfd/abx500/ab8500.h @@ -345,4 +345,10 @@ static inline int is_ab8500_2p0(struct ab8500 *ab) return (is_ab8500(ab) && (ab->chip_id == AB8500_CUT2P0)); } +#ifdef CONFIG_AB8500_DEBUG +void ab8500_dump_all_banks(struct device *dev); +#else +static inline void ab8500_dump_all_banks(struct device *dev) {} +#endif + #endif /* MFD_AB8500_H */ |