diff options
Diffstat (limited to 'kernel/sound/pci/ctxfi/cthw20k2.c')
-rw-r--r-- | kernel/sound/pci/ctxfi/cthw20k2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/sound/pci/ctxfi/cthw20k2.c b/kernel/sound/pci/ctxfi/cthw20k2.c index 955ad871e..9dc2950e1 100644 --- a/kernel/sound/pci/ctxfi/cthw20k2.c +++ b/kernel/sound/pci/ctxfi/cthw20k2.c @@ -2035,8 +2035,8 @@ static int hw_card_start(struct hw *hw) return err; /* Set DMA transfer mask */ - if (pci_set_dma_mask(pci, CT_XFI_DMA_MASK) < 0 || - pci_set_consistent_dma_mask(pci, CT_XFI_DMA_MASK) < 0) { + if (dma_set_mask(&pci->dev, CT_XFI_DMA_MASK) < 0 || + dma_set_coherent_mask(&pci->dev, CT_XFI_DMA_MASK) < 0) { dev_err(hw->card->dev, "architecture does not support PCI busmaster DMA with mask 0x%llx\n", CT_XFI_DMA_MASK); |