Ignore:
Timestamp:
Aug 14, 2021, 9:21:05 AM (4 years ago)
Author:
Paul Smedley
Message:

Update linux source to 5.12.19

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GPL/branches/uniaud32-next/alsa-kernel/pci/bt87x.c

    r629 r693  
    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.