mirror of
https://github.com/torvalds/linux.git
synced 2025-11-05 11:10:22 +02:00
hwmon: (hwmon-vid) Fix checkpatch issues
Fixed:
ERROR: code indent should use tabs where possible
ERROR: space required before the open parenthesis '('
WARNING: EXPORT_SYMBOL(foo); should immediately follow its function/variable
Not fixed (url):
WARNING: line over 80 characters
Not fixed (false positive):
ERROR: Macros with complex values should be enclosed in parenthesis
Cc: Rudolf Marek <r.marek@assembler.cz>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Acked-by: Jean Delvare <khali@linux-fr.org>
This commit is contained in:
parent
3230f7049e
commit
f352df652f
1 changed files with 8 additions and 10 deletions
|
|
@ -157,7 +157,7 @@ int vid_from_reg(int val, u8 vrm)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL(vid_from_reg);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* After this point is the code to automatically determine which
|
* After this point is the code to automatically determine which
|
||||||
|
|
@ -299,8 +299,6 @@ u8 vid_which_vrm(void)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
EXPORT_SYMBOL(vid_from_reg);
|
|
||||||
EXPORT_SYMBOL(vid_which_vrm);
|
EXPORT_SYMBOL(vid_which_vrm);
|
||||||
|
|
||||||
MODULE_AUTHOR("Rudolf Marek <r.marek@assembler.cz>");
|
MODULE_AUTHOR("Rudolf Marek <r.marek@assembler.cz>");
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue