Changeset 693 for GPL/branches/uniaud32-next/alsa-kernel/pci/bt87x.c
- Timestamp:
- Aug 14, 2021, 9:21:05 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/branches/uniaud32-next/alsa-kernel/pci/bt87x.c
r629 r693 28 28 MODULE_DESCRIPTION("Brooktree Bt87x audio driver"); 29 29 MODULE_LICENSE("GPL"); 30 MODULE_SUPPORTED_DEVICE("{{Brooktree,Bt878},"31 "{Brooktree,Bt879}}");32 30 33 31 #ifndef TARGET_OS2 … … 337 335 irq_block = status >> INT_RISCS_SHIFT; 338 336 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); 340 339 341 340 snd_pcm_period_elapsed(chip->substream);
Note:
See TracChangeset
for help on using the changeset viewer.