Ignore:
Timestamp:
Feb 16, 2008, 7:40:20 AM (17 years ago)
Author:
Brendan Oakley
Message:

Merged to ALSA 1.0.2

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GPL/branches/alsa-resync1/alsa-kernel/pci/maestro3.c

    r250 r290  
    27062706
    27072707    /* check, if we can restrict PCI DMA transfers to 28 bits */
    2708     if (!pci_dma_supported(pci, 0x0fffffff)) {
     2708        if (pci_set_dma_mask(pci, 0x0fffffff) < 0 ||
     2709            pci_set_consistent_dma_mask(pci, 0x0fffffff) < 0) {
    27092710        snd_printk("architecture does not support 28bit PCI busmaster DMA\n");
    27102711        return -ENXIO;
    27112712    }
    2712     pci_set_consistent_dma_mask(pci, 0x0fffffff);
    27132713
    27142714    chip = kcalloc(1, sizeof(*chip), GFP_KERNEL);
     
    28292829    snd_m3_enable_ints(chip);
    28302830    snd_m3_assp_continue(chip);
     2831
     2832        snd_card_set_dev(card, &pci->dev);
    28312833
    28322834    *chip_ret = chip;
Note: See TracChangeset for help on using the changeset viewer.