Ignore:
Timestamp:
Aug 21, 2021, 3:35:34 AM (4 years ago)
Author:
David Azarewicz
Message:

Merge changes from next branch.

Location:
GPL/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • GPL/trunk

  • GPL/trunk/alsa-kernel/pci/es1968.c

    r679 r695  
    111111MODULE_DESCRIPTION("ESS Maestro");
    112112MODULE_LICENSE("GPL");
    113 MODULE_SUPPORTED_DEVICE("{{ESS,Maestro 2e},"
    114                 "{ESS,Maestro 2},"
    115                 "{ESS,Maestro 1},"
    116                 "{TerraTec,DMX}}");
    117113
    118114#if IS_REACHABLE(CONFIG_GAMEPORT)
     
    27052701                return err;
    27062702        /* check, if we can restrict PCI DMA transfers to 28 bits */
    2707         if (dma_set_mask(&pci->dev, DMA_BIT_MASK(28)) < 0 ||
    2708             dma_set_coherent_mask(&pci->dev, DMA_BIT_MASK(28)) < 0) {
     2703        if (dma_set_mask_and_coherent(&pci->dev, DMA_BIT_MASK(28))) {
    27092704                dev_err(card->dev,
    27102705                        "architecture does not support 28bit PCI busmaster DMA\n");
     
    28052800                        dev_info(card->dev, "detected TEA575x radio type %s\n",
    28062801                                   get_tea575x_gpio(chip)->name);
    2807                         strlcpy(chip->tea.card, get_tea575x_gpio(chip)->name,
     2802                        strscpy(chip->tea.card, get_tea575x_gpio(chip)->name,
    28082803                                sizeof(chip->tea.card));
    28092804                        break;
Note: See TracChangeset for help on using the changeset viewer.