diff options
Diffstat (limited to 'drivers/ide/pci/cmd64x.c')
-rw-r--r-- | drivers/ide/pci/cmd64x.c | 25 |
1 files changed, 22 insertions, 3 deletions
diff --git a/drivers/ide/pci/cmd64x.c b/drivers/ide/pci/cmd64x.c index 5fd252e6ed08..006fb62656bc 100644 --- a/drivers/ide/pci/cmd64x.c +++ b/drivers/ide/pci/cmd64x.c | |||
@@ -391,18 +391,37 @@ static const struct ide_port_ops cmd64x_port_ops = { | |||
391 | .cable_detect = cmd64x_cable_detect, | 391 | .cable_detect = cmd64x_cable_detect, |
392 | }; | 392 | }; |
393 | 393 | ||
394 | static struct ide_dma_ops cmd64x_dma_ops = { | 394 | static const struct ide_dma_ops cmd64x_dma_ops = { |
395 | .dma_host_set = ide_dma_host_set, | ||
396 | .dma_setup = ide_dma_setup, | ||
397 | .dma_exec_cmd = ide_dma_exec_cmd, | ||
398 | .dma_start = ide_dma_start, | ||
395 | .dma_end = cmd64x_dma_end, | 399 | .dma_end = cmd64x_dma_end, |
396 | .dma_test_irq = cmd64x_dma_test_irq, | 400 | .dma_test_irq = cmd64x_dma_test_irq, |
401 | .dma_lost_irq = ide_dma_lost_irq, | ||
402 | .dma_timeout = ide_dma_timeout, | ||
397 | }; | 403 | }; |
398 | 404 | ||
399 | static struct ide_dma_ops cmd646_rev1_dma_ops = { | 405 | static const struct ide_dma_ops cmd646_rev1_dma_ops = { |
406 | .dma_host_set = ide_dma_host_set, | ||
407 | .dma_setup = ide_dma_setup, | ||
408 | .dma_exec_cmd = ide_dma_exec_cmd, | ||
409 | .dma_start = ide_dma_start, | ||
400 | .dma_end = cmd646_1_dma_end, | 410 | .dma_end = cmd646_1_dma_end, |
411 | .dma_test_irq = ide_dma_test_irq, | ||
412 | .dma_lost_irq = ide_dma_lost_irq, | ||
413 | .dma_timeout = ide_dma_timeout, | ||
401 | }; | 414 | }; |
402 | 415 | ||
403 | static struct ide_dma_ops cmd648_dma_ops = { | 416 | static const struct ide_dma_ops cmd648_dma_ops = { |
417 | .dma_host_set = ide_dma_host_set, | ||
418 | .dma_setup = ide_dma_setup, | ||
419 | .dma_exec_cmd = ide_dma_exec_cmd, | ||
420 | .dma_start = ide_dma_start, | ||
404 | .dma_end = cmd648_dma_end, | 421 | .dma_end = cmd648_dma_end, |
405 | .dma_test_irq = cmd648_dma_test_irq, | 422 | .dma_test_irq = cmd648_dma_test_irq, |
423 | .dma_lost_irq = ide_dma_lost_irq, | ||
424 | .dma_timeout = ide_dma_timeout, | ||
406 | }; | 425 | }; |
407 | 426 | ||
408 | static const struct ide_port_info cmd64x_chipsets[] __devinitdata = { | 427 | static const struct ide_port_info cmd64x_chipsets[] __devinitdata = { |