Changeset 721
- Timestamp:
- Sep 4, 2022, 1:00:27 AM (3 years ago)
- Location:
- GPL/branches/uniaud32-next
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/branches/uniaud32-next/alsa-kernel/core/pcm_memory.c
r711 r721 86 86 } while (size >= snd_minimum_buffer); 87 87 dmab->bytes = 0; /* tell error */ 88 #ifndef TARGET_OS2 88 89 pr_warn("ALSA pcmC%dD%d%c,%d:%s: cannot preallocate for size %zu\n", 90 #else 91 pr_warn("ALSA pcmC%dD%d%c,%d:%s: cannot preallocate for size %lu\n", 92 #endif 89 93 substream->pcm->card->number, substream->pcm->device, 90 94 substream->stream ? 'c' : 'p', substream->number, … … 181 185 size, &new_dmab) < 0) { 182 186 buffer->error = -ENOMEM; 187 #ifndef TARGET_OS2 183 188 pr_debug("ALSA pcmC%dD%d%c,%d:%s: cannot preallocate for size %zu\n", 189 #else 190 pr_debug("ALSA pcmC%dD%d%c,%d:%s: cannot preallocate for size %lu\n", 191 #endif 184 192 substream->pcm->card->number, substream->pcm->device, 185 193 substream->stream ? 'c' : 'p', substream->number, … … 424 432 size, dmab) < 0) { 425 433 kfree(dmab); 434 #ifndef TARGET_OS2 426 435 pr_debug("ALSA pcmC%dD%d%c,%d:%s: cannot preallocate for size %zu\n", 436 #else 437 pr_debug("ALSA pcmC%dD%d%c,%d:%s: cannot preallocate for size %lu\n", 438 #endif 427 439 substream->pcm->card->number, substream->pcm->device, 428 440 substream->stream ? 'c' : 'p', substream->number, -
GPL/branches/uniaud32-next/lib32/regcache-rbtree.c
r654 r721 170 170 average = 0; 171 171 172 seq_printf(s, "%d nodes, %d registers, average %d registers, used % zu bytes\n",172 seq_printf(s, "%d nodes, %d registers, average %d registers, used %lu bytes\n", 173 173 nodes, registers, average, mem_size); 174 174 -
GPL/branches/uniaud32-next/lib32/regcache.c
r718 r721 729 729 count = (cur - base) / map->reg_stride; 730 730 731 dev_dbg(map->dev, "Writing % zu bytes for %d registers from 0x%x-0x%x\n",731 dev_dbg(map->dev, "Writing %lu bytes for %d registers from 0x%x-0x%x\n", 732 732 count * val_bytes, count, base, cur - map->reg_stride); 733 733 -
GPL/branches/uniaud32-next/lib32/regmap.c
r718 r721 1732 1732 /* If the write goes beyond the end of the window split it */ 1733 1733 while (val_num > win_residue) { 1734 dev_dbg(map->dev, "Writing window %d/% zu\n",1734 dev_dbg(map->dev, "Writing window %d/%lu\n", 1735 1735 win_residue, val_len / map->format.val_bytes); 1736 1736 ret = _regmap_raw_write_impl(map, reg, val,
Note:
See TracChangeset
for help on using the changeset viewer.