aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/power
diff options
context:
space:
mode:
authorKen O'Brien <kernel@kenobrien.org>2011-05-29 18:53:12 +0100
committerAnton Vorontsov <cbouatmailru@gmail.com>2011-07-08 16:55:56 +0400
commitc84cad3d0fbb09dbfb30336ab05181cdbe097634 (patch)
tree34a9ea184f0874aaeb8c0631ac22471bd91dcde2 /drivers/power
parents3c_adc_battery: Fix annotation for s3c_adc_battery_probe() (diff)
downloadlinux-dev-c84cad3d0fbb09dbfb30336ab05181cdbe097634.tar.xz
linux-dev-c84cad3d0fbb09dbfb30336ab05181cdbe097634.zip
apm_power: Fix style error in macros
Two macros in the changed file contained complex expressions which were not enclosed by parentheses. Signed-off-by: Ken O'Brien <kernel@kenobrien.org> Signed-off-by: Anton Vorontsov <cbouatmailru@gmail.com>
Diffstat (limited to 'drivers/power')
-rw-r--r--drivers/power/apm_power.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/power/apm_power.c b/drivers/power/apm_power.c
index dc628cb2e762..8a612dec9139 100644
--- a/drivers/power/apm_power.c
+++ b/drivers/power/apm_power.c
@@ -14,11 +14,11 @@
#include <linux/apm-emulation.h>
-#define PSY_PROP(psy, prop, val) psy->get_property(psy, \
- POWER_SUPPLY_PROP_##prop, val)
+#define PSY_PROP(psy, prop, val) (psy->get_property(psy, \
+ POWER_SUPPLY_PROP_##prop, val))
-#define _MPSY_PROP(prop, val) main_battery->get_property(main_battery, \
- prop, val)
+#define _MPSY_PROP(prop, val) (main_battery->get_property(main_battery, \
+ prop, val))
#define MPSY_PROP(prop, val) _MPSY_PROP(POWER_SUPPLY_PROP_##prop, val)