aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hwmon/k10temp.c
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@gmail.com>2012-04-02 21:25:46 -0400
committerGuenter Roeck <guenter.roeck@ericsson.com>2012-05-20 22:41:48 -0400
commitf71f5a550a43a81943efbe0032190ec381006b53 (patch)
treed2eac8dcd43f1e56b9dcf0f05bbe2ff99953c2a8 /drivers/hwmon/k10temp.c
parent0531d98b1f2ec6f92074e5b2a74927b865bc605c (diff)
hwmon: use module_pci_driver
This patch converts the drivers in drivers/hwmon/* to use module_pci_driver() macro which makes the code smaller and a bit simpler. Signed-off-by: Axel Lin <axel.lin@gmail.com> Cc: Andreas Herrmann <andreas.herrmann3@amd.com> Cc: Clemens Ladisch <clemens@ladisch.de> Cc: Rudolf Marek <r.marek@assembler.cz> Signed-off-by: Guenter Roeck <guenter.roeck@ericsson.com>
Diffstat (limited to 'drivers/hwmon/k10temp.c')
-rw-r--r--drivers/hwmon/k10temp.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/hwmon/k10temp.c b/drivers/hwmon/k10temp.c
index 307bb325dde9..7356b5ec8f67 100644
--- a/drivers/hwmon/k10temp.c
+++ b/drivers/hwmon/k10temp.c
@@ -225,15 +225,4 @@ static struct pci_driver k10temp_driver = {
225 .remove = __devexit_p(k10temp_remove), 225 .remove = __devexit_p(k10temp_remove),
226}; 226};
227 227
228static int __init k10temp_init(void) 228module_pci_driver(k10temp_driver);
229{
230 return pci_register_driver(&k10temp_driver);
231}
232
233static void __exit k10temp_exit(void)
234{
235 pci_unregister_driver(&k10temp_driver);
236}
237
238module_init(k10temp_init)
239module_exit(k10temp_exit)