diff options
Diffstat (limited to 'drivers/ata/pata_triflex.c')
-rw-r--r-- | drivers/ata/pata_triflex.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/ata/pata_triflex.c b/drivers/ata/pata_triflex.c index 28da1c6becf1..c8e589d91231 100644 --- a/drivers/ata/pata_triflex.c +++ b/drivers/ata/pata_triflex.c | |||
@@ -240,21 +240,10 @@ static struct pci_driver triflex_pci_driver = { | |||
240 | #endif | 240 | #endif |
241 | }; | 241 | }; |
242 | 242 | ||
243 | static int __init triflex_init(void) | 243 | module_pci_driver(triflex_pci_driver); |
244 | { | ||
245 | return pci_register_driver(&triflex_pci_driver); | ||
246 | } | ||
247 | |||
248 | static void __exit triflex_exit(void) | ||
249 | { | ||
250 | pci_unregister_driver(&triflex_pci_driver); | ||
251 | } | ||
252 | 244 | ||
253 | MODULE_AUTHOR("Alan Cox"); | 245 | MODULE_AUTHOR("Alan Cox"); |
254 | MODULE_DESCRIPTION("low-level driver for Compaq Triflex"); | 246 | MODULE_DESCRIPTION("low-level driver for Compaq Triflex"); |
255 | MODULE_LICENSE("GPL"); | 247 | MODULE_LICENSE("GPL"); |
256 | MODULE_DEVICE_TABLE(pci, triflex); | 248 | MODULE_DEVICE_TABLE(pci, triflex); |
257 | MODULE_VERSION(DRV_VERSION); | 249 | MODULE_VERSION(DRV_VERSION); |
258 | |||
259 | module_init(triflex_init); | ||
260 | module_exit(triflex_exit); | ||