diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-04-26 16:25:20 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-04-26 16:25:20 -0400 |
commit | 21a3387ddd9eedcf6d4f47e591ffa90128b9f560 (patch) | |
tree | b1078598c6e93e1c232312a366f60f1e1d29eeb6 /drivers/ide/ide-dma.c | |
parent | eb63963a55f039f049d0dd1121f91f332af6ecc9 (diff) |
ide: remove ->extra field from struct ide_port_info
Always setup hwif->extra_base in ide_iomio_dma() and remove
no longer needed ->extra field from struct ide_port_info.
There should be no functional changes caused by this patch.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide/ide-dma.c')
-rw-r--r-- | drivers/ide/ide-dma.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/ide/ide-dma.c b/drivers/ide/ide-dma.c index 3cdb0749ada4..77506fec1fbd 100644 --- a/drivers/ide/ide-dma.c +++ b/drivers/ide/ide-dma.c | |||
@@ -850,8 +850,7 @@ static int ide_iomio_dma(ide_hwif_t *hwif, unsigned long base) | |||
850 | printk(KERN_INFO " %s: BM-DMA at 0x%04lx-0x%04lx", | 850 | printk(KERN_INFO " %s: BM-DMA at 0x%04lx-0x%04lx", |
851 | hwif->name, base, base + 7); | 851 | hwif->name, base, base + 7); |
852 | 852 | ||
853 | if (hwif->cds->extra) | 853 | hwif->extra_base = base + (hwif->channel ? 8 : 16); |
854 | hwif->extra_base = base + (hwif->channel ? 8 : 16); | ||
855 | 854 | ||
856 | return 0; | 855 | return 0; |
857 | } | 856 | } |