diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-13 17:15:06 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-13 17:15:06 -0400 |
commit | 7591103c08abade60aeddb432ed0686ddd0de1c6 (patch) | |
tree | 523343b43b0c420666da18c64e1e9f21ff63dea5 /drivers/ide/pci/slc90e66.c | |
parent | 2be4ff2f084842839b041b793ed6237e8d1d315a (diff) | |
parent | 9c6102d446985bca9c426cb2d9b478ed21d2b024 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/bart/ide-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/bart/ide-2.6: (66 commits)
ata: Add documentation for hard disk shock protection interface (v3)
ide: Implement disk shock protection support (v4)
ide-cd: fix printk format warning
piix: add Hercules EC-900 mini-notebook to ich_laptop short cable list
ide-atapi: assign taskfile flags per device type
ide-cd: move cdrom_info.dma to ide_drive_t.dma
ide: add ide_drive_t.dma flag
ide-cd: add a debug_mask module parameter
ide-cd: convert driver to new ide debugging macro (v3)
ide: move SFF DMA code to ide-dma-sff.c
ide: cleanup ide-dma.c
ide: cleanup ide_build_dmatable()
ide: remove needless includes from ide-dma.c
ide: switch to DMA-mapping API part #2
ide: make ide_dma_timeout() available also for CONFIG_BLK_DEV_IDEDMA_SFF=n
ide: make ide_dma_lost_irq() available also for CONFIG_BLK_DEV_IDEDMA_SFF=n
ide: __ide_dma_end() -> ide_dma_end()
pmac: remove needless pmac_ide_destroy_dmatable() wrapper
pmac: remove superfluous pmif == NULL checks
ide: Two fixes regarding memory allocation
...
Diffstat (limited to 'drivers/ide/pci/slc90e66.c')
-rw-r--r-- | drivers/ide/pci/slc90e66.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/ide/pci/slc90e66.c b/drivers/ide/pci/slc90e66.c index a9551a13ac57..0f759e4ed779 100644 --- a/drivers/ide/pci/slc90e66.c +++ b/drivers/ide/pci/slc90e66.c | |||
@@ -154,7 +154,7 @@ static const struct pci_device_id slc90e66_pci_tbl[] = { | |||
154 | }; | 154 | }; |
155 | MODULE_DEVICE_TABLE(pci, slc90e66_pci_tbl); | 155 | MODULE_DEVICE_TABLE(pci, slc90e66_pci_tbl); |
156 | 156 | ||
157 | static struct pci_driver driver = { | 157 | static struct pci_driver slc90e66_pci_driver = { |
158 | .name = "SLC90e66_IDE", | 158 | .name = "SLC90e66_IDE", |
159 | .id_table = slc90e66_pci_tbl, | 159 | .id_table = slc90e66_pci_tbl, |
160 | .probe = slc90e66_init_one, | 160 | .probe = slc90e66_init_one, |
@@ -165,12 +165,12 @@ static struct pci_driver driver = { | |||
165 | 165 | ||
166 | static int __init slc90e66_ide_init(void) | 166 | static int __init slc90e66_ide_init(void) |
167 | { | 167 | { |
168 | return ide_pci_register_driver(&driver); | 168 | return ide_pci_register_driver(&slc90e66_pci_driver); |
169 | } | 169 | } |
170 | 170 | ||
171 | static void __exit slc90e66_ide_exit(void) | 171 | static void __exit slc90e66_ide_exit(void) |
172 | { | 172 | { |
173 | pci_unregister_driver(&driver); | 173 | pci_unregister_driver(&slc90e66_pci_driver); |
174 | } | 174 | } |
175 | 175 | ||
176 | module_init(slc90e66_ide_init); | 176 | module_init(slc90e66_ide_init); |