core.c (df9b42963f2d010ae3163a894ce22cf6b27cd344) | core.c (2d6bed9ca93e98685bc5038d686984fd449cd978) |
---|---|
1/* 2 * cb710/core.c 3 * 4 * Copyright by Michał Mirosław, 2008-2009 5 * 6 * This program is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. --- 318 unchanged lines hidden (view full) --- 327 PCI_ANY_ID, PCI_ANY_ID, }, 328 { 0, } 329}; 330 331static struct pci_driver cb710_driver = { 332 .name = KBUILD_MODNAME, 333 .id_table = cb710_pci_tbl, 334 .probe = cb710_probe, | 1/* 2 * cb710/core.c 3 * 4 * Copyright by Michał Mirosław, 2008-2009 5 * 6 * This program is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. --- 318 unchanged lines hidden (view full) --- 327 PCI_ANY_ID, PCI_ANY_ID, }, 328 { 0, } 329}; 330 331static struct pci_driver cb710_driver = { 332 .name = KBUILD_MODNAME, 333 .id_table = cb710_pci_tbl, 334 .probe = cb710_probe, |
335 .remove = __devexit_p(cb710_remove_one), | 335 .remove = cb710_remove_one, |
336#ifdef CONFIG_PM 337 .suspend = cb710_suspend, 338 .resume = cb710_resume, 339#endif 340}; 341 342static int __init cb710_init_module(void) 343{ --- 16 unchanged lines hidden --- | 336#ifdef CONFIG_PM 337 .suspend = cb710_suspend, 338 .resume = cb710_resume, 339#endif 340}; 341 342static int __init cb710_init_module(void) 343{ --- 16 unchanged lines hidden --- |