Title: [7421] trunk/include/linux/mfd/adp5520.h: mfd adp5520: fix unbalanced paren in BL_CTRL_VAL() macro
Revision
7421
Author
vapier
Date
2009-09-23 01:09:28 -0400 (Wed, 23 Sep 2009)

Log Message

mfd adp5520: fix unbalanced paren in BL_CTRL_VAL() macro

Modified Paths


Diff

Modified: trunk/include/linux/mfd/adp5520.h (7420 => 7421)


--- trunk/include/linux/mfd/adp5520.h	2009-09-23 05:01:56 UTC (rev 7420)
+++ trunk/include/linux/mfd/adp5520.h	2009-09-23 05:09:28 UTC (rev 7421)
@@ -107,7 +107,7 @@
 #define ADP5020_MAX_BRIGHTNESS	0x7F
 
 #define FADE_VAL(in, out)	((0xF & (in)) | ((0xF & (out)) << 4))
-#define BL_CTRL_VAL(law, auto)	(((1 & (auto)) << 3)) | ((0x3 & (law)) << 4))
+#define BL_CTRL_VAL(law, auto)	(((1 & (auto)) << 3) | ((0x3 & (law)) << 4))
 #define ALS_CMPR_CFG_VAL(filt, l3_en)	(((0x7 & filt) << 5) | l3_en)
 
 /*
_______________________________________________
Linux-kernel-commits mailing list
[email protected]
https://blackfin.uclinux.org/mailman/listinfo/linux-kernel-commits

Reply via email to