Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f352df65 authored by Guenter Roeck's avatar Guenter Roeck Committed by Guenter Roeck
Browse files

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: default avatarGuenter Roeck <linux@roeck-us.net>
Acked-by: default avatarJean Delvare <khali@linux-fr.org>
parent 3230f704
Loading
Loading
Loading
Loading
+8 −10
Original line number Diff line number Diff line
@@ -157,7 +157,7 @@ int vid_from_reg(int val, u8 vrm)
		return 0;
	}
}

EXPORT_SYMBOL(vid_from_reg);

/*
 * After this point is the code to automatically determine which
@@ -299,8 +299,6 @@ u8 vid_which_vrm(void)
	return 0;
}
#endif

EXPORT_SYMBOL(vid_from_reg);
EXPORT_SYMBOL(vid_which_vrm);

MODULE_AUTHOR("Rudolf Marek <r.marek@assembler.cz>");