[U-Boot] [PATCH] power: pfuze100 correct macro definition
Peng Fan
Peng.Fan at freescale.com
Mon Mar 23 08:34:10 CET 2015
Correct the macro PFUZE100_SW1ABC_SETP definition. We should
add parenthese for 'x'.
Signed-off-by: Peng Fan <Peng.Fan at freescale.com>
---
include/power/pfuze100_pmic.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/power/pfuze100_pmic.h b/include/power/pfuze100_pmic.h
index 07199b4..9c749ed 100644
--- a/include/power/pfuze100_pmic.h
+++ b/include/power/pfuze100_pmic.h
@@ -61,7 +61,7 @@ enum {
* Buck Regulators
*/
-#define PFUZE100_SW1ABC_SETP(x) ((x - 3000) / 250)
+#define PFUZE100_SW1ABC_SETP(x) (((x) - 3000) / 250)
/* SW1A/B/C Output Voltage Configuration */
#define SW1x_0_300V 0
--
1.8.4
More information about the U-Boot
mailing list