diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-04-26 16:25:24 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-04-26 16:25:24 -0400 |
commit | f37afdaca711838b50ecd89b9c15fc745270d77c (patch) | |
tree | 0580bdac04d7d9ef0cc9f4dc2350ea38141980b5 /drivers/ide/pci/cmd64x.c | |
parent | 5e37bdc081a980dd0d669e6387bcf15ca9666f81 (diff) |
ide: constify struct ide_dma_ops
* Export ide_dma_exec_cmd() and __ide_dma_test_irq().
* Constify struct ide_dma_ops.
* Always set hwif->dma_ops to &sff_dma_ops in ide_setup_dma()
(it is later overriden by ide_init_port() if needed) and drop
'const struct ide_port_info *d' argument.
While at it:
* Rename __ide_dma_test_irq() to ide_dma_test_irq().
Acked-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
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 = { |