diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-02-01 17:09:31 -0500 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-02-01 17:09:31 -0500 |
commit | 36501650ec45b1db308c3b51886044863be2d762 (patch) | |
tree | 74cf9d9f313e510f8424f9bac35da8d61cce9f7b /drivers/ide/setup-pci.c | |
parent | f6fb786d6dcdd7d730e4fba620b071796f487e1b (diff) |
ide: keep pointer to struct device instead of struct pci_dev in ide_hwif_t
Keep pointer to struct device instead of struct pci_dev in ide_hwif_t.
While on it:
* Use *dev->dma_mask instead of pci_dev->dma_mask in ide_toggle_bounce().
There should be no functionality changes caused by this patch.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide/setup-pci.c')
-rw-r--r-- | drivers/ide/setup-pci.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/ide/setup-pci.c b/drivers/ide/setup-pci.c index 0a4b3a6857e1..6b41d6c2433e 100644 --- a/drivers/ide/setup-pci.c +++ b/drivers/ide/setup-pci.c | |||
@@ -162,8 +162,8 @@ static void ide_pci_clear_simplex(unsigned long dma_base, const char *name) | |||
162 | 162 | ||
163 | static unsigned long ide_get_or_set_dma_base(const struct ide_port_info *d, ide_hwif_t *hwif) | 163 | static unsigned long ide_get_or_set_dma_base(const struct ide_port_info *d, ide_hwif_t *hwif) |
164 | { | 164 | { |
165 | unsigned long dma_base = 0; | 165 | struct pci_dev *dev = to_pci_dev(hwif->dev); |
166 | struct pci_dev *dev = hwif->pci_dev; | 166 | unsigned long dma_base = 0; |
167 | u8 dma_stat = 0; | 167 | u8 dma_stat = 0; |
168 | 168 | ||
169 | if (hwif->mmio) | 169 | if (hwif->mmio) |
@@ -391,7 +391,7 @@ static ide_hwif_t *ide_hwif_configure(struct pci_dev *dev, const struct ide_port | |||
391 | 391 | ||
392 | hwif->noprobe = oldnoprobe; | 392 | hwif->noprobe = oldnoprobe; |
393 | 393 | ||
394 | hwif->pci_dev = dev; | 394 | hwif->dev = &dev->dev; |
395 | hwif->cds = d; | 395 | hwif->cds = d; |
396 | hwif->channel = port; | 396 | hwif->channel = port; |
397 | 397 | ||