hpilo.c (ebf1b764aa5cb3b4bfe2e96674f1b559f7c37e64) | hpilo.c (2d6bed9ca93e98685bc5038d686984fd449cd978) |
---|---|
1/* 2 * Driver for the HP iLO management processor. 3 * 4 * Copyright (C) 2008 Hewlett-Packard Development Company, L.P. 5 * David Altobelli <david.altobelli@hp.com> 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License version 2 as --- 845 unchanged lines hidden (view full) --- 854 { } 855}; 856MODULE_DEVICE_TABLE(pci, ilo_devices); 857 858static struct pci_driver ilo_driver = { 859 .name = ILO_NAME, 860 .id_table = ilo_devices, 861 .probe = ilo_probe, | 1/* 2 * Driver for the HP iLO management processor. 3 * 4 * Copyright (C) 2008 Hewlett-Packard Development Company, L.P. 5 * David Altobelli <david.altobelli@hp.com> 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License version 2 as --- 845 unchanged lines hidden (view full) --- 854 { } 855}; 856MODULE_DEVICE_TABLE(pci, ilo_devices); 857 858static struct pci_driver ilo_driver = { 859 .name = ILO_NAME, 860 .id_table = ilo_devices, 861 .probe = ilo_probe, |
862 .remove = __devexit_p(ilo_remove), | 862 .remove = ilo_remove, |
863}; 864 865static int __init ilo_init(void) 866{ 867 int error; 868 dev_t dev; 869 870 ilo_class = class_create(THIS_MODULE, "iLO"); --- 42 unchanged lines hidden --- | 863}; 864 865static int __init ilo_init(void) 866{ 867 int error; 868 dev_t dev; 869 870 ilo_class = class_create(THIS_MODULE, "iLO"); --- 42 unchanged lines hidden --- |