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:

committed by
Guenter Roeck

parent
a6bee4a557
commit
7fe83ad877
@@ -116,7 +116,7 @@ DIV_TO_REG(long val)
|
||||
break;
|
||||
val >>= 1;
|
||||
}
|
||||
return ((u8) i);
|
||||
return (u8)i;
|
||||
}
|
||||
|
||||
struct w83l786ng_data {
|
||||
|
Reference in New Issue
Block a user