e7xxx_edac.c (806c35f5057a64d3061ee4e2b1023bf6f6d328e2) | e7xxx_edac.c (da9bb1d27b21cb24cbb6a2efb5d3c464d357a01e) |
---|---|
1/* 2 * Intel e7xxx Memory Controller kernel module 3 * (C) 2003 Linux Networx (http://lnxi.com) 4 * This file may be distributed under the terms of the 5 * GNU General Public License. 6 * 7 * See "enum e7xxx_chips" below for supported chipsets 8 * --- 523 unchanged lines hidden (view full) --- 532static struct pci_driver e7xxx_driver = { 533 .name = BS_MOD_STR, 534 .probe = e7xxx_init_one, 535 .remove = __devexit_p(e7xxx_remove_one), 536 .id_table = e7xxx_pci_tbl, 537}; 538 539 | 1/* 2 * Intel e7xxx Memory Controller kernel module 3 * (C) 2003 Linux Networx (http://lnxi.com) 4 * This file may be distributed under the terms of the 5 * GNU General Public License. 6 * 7 * See "enum e7xxx_chips" below for supported chipsets 8 * --- 523 unchanged lines hidden (view full) --- 532static struct pci_driver e7xxx_driver = { 533 .name = BS_MOD_STR, 534 .probe = e7xxx_init_one, 535 .remove = __devexit_p(e7xxx_remove_one), 536 .id_table = e7xxx_pci_tbl, 537}; 538 539 |
540int __init e7xxx_init(void) | 540static int __init e7xxx_init(void) |
541{ 542 return pci_register_driver(&e7xxx_driver); 543} 544 545 546static void __exit e7xxx_exit(void) 547{ 548 pci_unregister_driver(&e7xxx_driver); 549} 550 551module_init(e7xxx_init); 552module_exit(e7xxx_exit); 553 554 555MODULE_LICENSE("GPL"); 556MODULE_AUTHOR("Linux Networx (http://lnxi.com) Thayne Harbaugh et al\n" 557 "Based on.work by Dan Hollis et al"); 558MODULE_DESCRIPTION("MC support for Intel e7xxx memory controllers"); | 541{ 542 return pci_register_driver(&e7xxx_driver); 543} 544 545 546static void __exit e7xxx_exit(void) 547{ 548 pci_unregister_driver(&e7xxx_driver); 549} 550 551module_init(e7xxx_init); 552module_exit(e7xxx_exit); 553 554 555MODULE_LICENSE("GPL"); 556MODULE_AUTHOR("Linux Networx (http://lnxi.com) Thayne Harbaugh et al\n" 557 "Based on.work by Dan Hollis et al"); 558MODULE_DESCRIPTION("MC support for Intel e7xxx memory controllers"); |