diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-04-28 17:44:42 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-04-28 17:44:42 -0400 |
commit | 41051a141dcc67f4c5011a2ab2b547e80b9ac509 (patch) | |
tree | 8b89b621964f26b2bf42c31478f4122d6145172e /drivers/ide/ide-dma.c | |
parent | 669185e98c242fa4dcd68cf11899412da1a70dd7 (diff) |
ide: remove ->dma_vendor{1,3} fields from ide_hwif_t
* Use 'hwif->dma_base + {1,3}' instead of hwif->dma_vendor{1,3} in
pdc202xx_new host driver.
* Remove no longer needed ->dma_vendor{1,3} fields from ide_hwif_t.
Acked-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide/ide-dma.c')
-rw-r--r-- | drivers/ide/ide-dma.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/ide/ide-dma.c b/drivers/ide/ide-dma.c index c352cf27b6e7..767820db7cae 100644 --- a/drivers/ide/ide-dma.c +++ b/drivers/ide/ide-dma.c | |||
@@ -858,12 +858,8 @@ void ide_setup_dma(ide_hwif_t *hwif, unsigned long base) | |||
858 | 858 | ||
859 | if (!hwif->dma_command) | 859 | if (!hwif->dma_command) |
860 | hwif->dma_command = hwif->dma_base + 0; | 860 | hwif->dma_command = hwif->dma_base + 0; |
861 | if (!hwif->dma_vendor1) | ||
862 | hwif->dma_vendor1 = hwif->dma_base + 1; | ||
863 | if (!hwif->dma_status) | 861 | if (!hwif->dma_status) |
864 | hwif->dma_status = hwif->dma_base + 2; | 862 | hwif->dma_status = hwif->dma_base + 2; |
865 | if (!hwif->dma_vendor3) | ||
866 | hwif->dma_vendor3 = hwif->dma_base + 3; | ||
867 | if (!hwif->dma_prdtable) | 863 | if (!hwif->dma_prdtable) |
868 | hwif->dma_prdtable = hwif->dma_base + 4; | 864 | hwif->dma_prdtable = hwif->dma_base + 4; |
869 | 865 | ||