diff options
author | Frans Meulenbroeks <fransmeulenbroeks@gmail.com> | 2012-01-08 13:34:14 -0500 |
---|---|---|
committer | Guenter Roeck <guenter.roeck@ericsson.com> | 2012-03-18 21:26:32 -0400 |
commit | 839a9eefc918345ae7a7e8c6f583e2e653646d4d (patch) | |
tree | 419715355949f48fd92cf4b2f8d6a15ed8c4782d | |
parent | 08f509077499907c8bae59818771ce18d3179aa9 (diff) |
hwmon: fix checkpatch issues
fixed:
WARNING: EXPORT_SYMBOL(foo); should immediately follow its function/variable
+EXPORT_SYMBOL_GPL(hwmon_device_register);
WARNING: EXPORT_SYMBOL(foo); should immediately follow its function/variable
+EXPORT_SYMBOL_GPL(hwmon_device_unregister);
Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Signed-off-by: Guenter Roeck <guenter.roeck@ericsson.com>
-rw-r--r-- | drivers/hwmon/hwmon.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/hwmon/hwmon.c b/drivers/hwmon/hwmon.c index 6460487e41b5..b58a0ffbd3bd 100644 --- a/drivers/hwmon/hwmon.c +++ b/drivers/hwmon/hwmon.c | |||
@@ -55,6 +55,7 @@ struct device *hwmon_device_register(struct device *dev) | |||
55 | 55 | ||
56 | return hwdev; | 56 | return hwdev; |
57 | } | 57 | } |
58 | EXPORT_SYMBOL_GPL(hwmon_device_register); | ||
58 | 59 | ||
59 | /** | 60 | /** |
60 | * hwmon_device_unregister - removes the previously registered class device | 61 | * hwmon_device_unregister - removes the previously registered class device |
@@ -72,6 +73,7 @@ void hwmon_device_unregister(struct device *dev) | |||
72 | dev_dbg(dev->parent, | 73 | dev_dbg(dev->parent, |
73 | "hwmon_device_unregister() failed: bad class ID!\n"); | 74 | "hwmon_device_unregister() failed: bad class ID!\n"); |
74 | } | 75 | } |
76 | EXPORT_SYMBOL_GPL(hwmon_device_unregister); | ||
75 | 77 | ||
76 | static void __init hwmon_pci_quirks(void) | 78 | static void __init hwmon_pci_quirks(void) |
77 | { | 79 | { |
@@ -119,9 +121,6 @@ static void __exit hwmon_exit(void) | |||
119 | subsys_initcall(hwmon_init); | 121 | subsys_initcall(hwmon_init); |
120 | module_exit(hwmon_exit); | 122 | module_exit(hwmon_exit); |
121 | 123 | ||
122 | EXPORT_SYMBOL_GPL(hwmon_device_register); | ||
123 | EXPORT_SYMBOL_GPL(hwmon_device_unregister); | ||
124 | |||
125 | MODULE_AUTHOR("Mark M. Hoffman <mhoffman@lightlink.com>"); | 124 | MODULE_AUTHOR("Mark M. Hoffman <mhoffman@lightlink.com>"); |
126 | MODULE_DESCRIPTION("hardware monitoring sysfs/class support"); | 125 | MODULE_DESCRIPTION("hardware monitoring sysfs/class support"); |
127 | MODULE_LICENSE("GPL"); | 126 | MODULE_LICENSE("GPL"); |