diff options
author | Guenter Roeck <linux@roeck-us.net> | 2012-01-20 21:34:50 +0400 |
---|---|---|
committer | Guenter Roeck <guenter.roeck@ericsson.com> | 2012-03-19 05:26:54 +0400 |
commit | 3c22e2326015e79822837aaa44eaf15249f8af7b (patch) | |
tree | a0a27e4b9dfe212964c13941d8bc9f306dc9f935 /drivers/hwmon/smm665.c | |
parent | 3c56b066fb62e4aee95e4b3acff35296765a25d1 (diff) | |
download | linux-3c22e2326015e79822837aaa44eaf15249f8af7b.tar.xz |
hwmon: (smm665) Fix checkpatch error
Fix:
ERROR: Macros with complex values should be enclosed in parenthesis
Also updated multi-line comments to follow Documentation/CodingStyle.
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon/smm665.c')
-rw-r--r-- | drivers/hwmon/smm665.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/hwmon/smm665.c b/drivers/hwmon/smm665.c index 24382c735e56..5877078aaca5 100644 --- a/drivers/hwmon/smm665.c +++ b/drivers/hwmon/smm665.c @@ -124,9 +124,9 @@ enum chips { smm465, smm665, smm665c, smm764, smm766 }; #define SMM665_AIN_ADC_TO_VOLTS(adc) ((adc) * vref / 512) /* Temp Sensor */ -#define SMM665_TEMP_ADC_TO_CELSIUS(adc) ((adc) <= 511) ? \ +#define SMM665_TEMP_ADC_TO_CELSIUS(adc) (((adc) <= 511) ? \ ((int)(adc) * 1000 / 4) : \ - (((int)(adc) - 0x400) * 1000 / 4) + (((int)(adc) - 0x400) * 1000 / 4)) #define SMM665_NUM_ADC 11 @@ -389,7 +389,8 @@ SMM665_SHOW(max); SMM665_SHOW(lcrit); SMM665_SHOW(crit); -/* These macros are used below in constructing device attribute objects +/* + * These macros are used below in constructing device attribute objects * for use with sysfs_create_group() to make a sysfs device file * for each register. */ |