hwmon: remove () used with return

fix checkpatch ERROR:
return is not a function, parentheses are not required

Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Signed-off-by: Guenter Roeck <guenter.roeck@ericsson.com>
This commit is contained in:
Frans Meulenbroeks
2012-01-05 19:50:18 +01:00
committed by Guenter Roeck
parent a6bee4a557
commit 7fe83ad877
8 changed files with 32 additions and 32 deletions

View File

@@ -116,7 +116,7 @@ DIV_TO_REG(long val)
break;
val >>= 1;
}
return ((u8) i);
return (u8)i;
}
struct w83l786ng_data {