diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2008-11-24 20:22:58 +0100 |
---|---|---|
committer | Samuel Ortiz <samuel@sortiz.org> | 2009-01-04 12:17:39 +0100 |
commit | b797a5551979da22b0a35632198ffc8a330d9537 (patch) | |
tree | 664747dc55889cd30a7d853e2fe5e816a2d9d6a2 /include | |
parent | d756f4a4446227ca9626087939a6769ca55ab036 (diff) | |
download | linux-3.10-b797a5551979da22b0a35632198ffc8a330d9537.tar.gz linux-3.10-b797a5551979da22b0a35632198ffc8a330d9537.tar.bz2 linux-3.10-b797a5551979da22b0a35632198ffc8a330d9537.zip |
mfd: Refactor WM8350 chip identification
Since the WM8350 driver was originally written the semantics for the
identification registers of the chip have been clarified, allowing
us to do an exact match on all the fields. This avoids mistakenly
running on unsupported hardware.
Also change to using the datasheet names more consistently for
legibility and fix a printk() that should be dev_err().
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Samuel Ortiz <sameo@openedhand.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/mfd/wm8350/core.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/mfd/wm8350/core.h b/include/linux/mfd/wm8350/core.h index 3c9735663f3..2a7abeebe77 100644 --- a/include/linux/mfd/wm8350/core.h +++ b/include/linux/mfd/wm8350/core.h @@ -29,6 +29,7 @@ */ #define WM8350_RESET_ID 0x00 #define WM8350_ID 0x01 +#define WM8350_REVISION 0x02 #define WM8350_SYSTEM_CONTROL_1 0x03 #define WM8350_SYSTEM_CONTROL_2 0x04 #define WM8350_SYSTEM_HIBERNATE 0x05 @@ -80,6 +81,11 @@ #define WM8350_CUST_ID_MASK 0x00FF /* + * R2 (0x02) - Revision + */ +#define WM8350_MASK_REV_MASK 0x00FF + +/* * R3 (0x03) - System Control 1 */ #define WM8350_CHIP_ON 0x8000 |