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/bt87x.c

    r679 r695  
    2828MODULE_DESCRIPTION("Brooktree Bt87x audio driver");
    2929MODULE_LICENSE("GPL");
    30 MODULE_SUPPORTED_DEVICE("{{Brooktree,Bt878},"
    31                 "{Brooktree,Bt879}}");
    3230
    3331#ifndef TARGET_OS2
     
    337335                irq_block = status >> INT_RISCS_SHIFT;
    338336                if (current_block != irq_block)
    339                         chip->current_line = (irq_block * chip->lines + 15) / 16;
     337                        chip->current_line = DIV_ROUND_UP(irq_block * chip->lines,
     338                                                          16);
    340339
    341340                snd_pcm_period_elapsed(chip->substream);
Note: See TracChangeset for help on using the changeset viewer.