summaryrefslogtreecommitdiff
path: root/drivers/mfd
diff options
context:
space:
mode:
authorWayne Zou <b36644@freescale.com>2011-06-01 18:12:00 +0800
committerAlan Tull <alan.tull@freescale.com>2011-06-03 16:53:03 -0500
commitc7467193ab87bcbc41fd8e60db49b0dc4b5df41e (patch)
treeee980eb041b747a9684a7f3407f593ca03d527ba /drivers/mfd
parent2c3f97262701c2131f70717f5aa6ef30fce8eaa5 (diff)
ENGR00143611-2 DA9053: track DA9053 version/USB wakeup issue
fix the DA9053 chip version identification Signed-off-by: Wayne Zou <b36644@freescale.com>
Diffstat (limited to 'drivers/mfd')
-rw-r--r--drivers/mfd/da9052-core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/da9052-core.c b/drivers/mfd/da9052-core.c
index 42019221ec53..571006baf796 100644
--- a/drivers/mfd/da9052-core.c
+++ b/drivers/mfd/da9052-core.c
@@ -504,7 +504,7 @@ int da9052_ssc_init(struct da9052 *da9052)
if ((ssc_msg.data & DA9052_CHIPID_MRC) == 0x80) {
da9052->chip_version = DA9053_VERSION_AA;
pr_info("AA version probed\n");
- } else if ((ssc_msg.data & DA9052_CHIPID_MRC) == 0xf0) {
+ } else if ((ssc_msg.data & DA9052_CHIPID_MRC) == 0xa0) {
da9052->chip_version = DA9053_VERSION_BB;
pr_info("BB version probed\n");
} else {