All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] pmic: max77686: fix the wrong offset
@ 2013-09-30  5:23 Jaehoon Chung
  2013-10-14 20:25 ` [U-Boot] " Tom Rini
  0 siblings, 1 reply; 2+ messages in thread
From: Jaehoon Chung @ 2013-09-30  5:23 UTC (permalink / raw)
  To: u-boot

0x1D is reserved. So BUCK3DVS1 is started from 0x1e.

Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
---
 include/power/max77686_pmic.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/power/max77686_pmic.h b/include/power/max77686_pmic.h
index c98db1b..16e9016 100644
--- a/include/power/max77686_pmic.h
+++ b/include/power/max77686_pmic.h
@@ -36,7 +36,7 @@ enum {
 	MAX77686_REG_PMIC_BUCK2DVS7,
 	MAX77686_REG_PMIC_BUCK2DVS8,
 	MAX77686_REG_PMIC_BUCK3CTRL,
-	MAX77686_REG_PMIC_BUCK3DVS1,
+	MAX77686_REG_PMIC_BUCK3DVS1	= 0x1e,
 	MAX77686_REG_PMIC_BUCK3DVS2,
 	MAX77686_REG_PMIC_BUCK3DVS3,
 	MAX77686_REG_PMIC_BUCK3DVS4,
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-10-14 20:25 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-30  5:23 [U-Boot] [PATCH] pmic: max77686: fix the wrong offset Jaehoon Chung
2013-10-14 20:25 ` [U-Boot] " Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.