Changeset 721


Ignore:
Timestamp:
Sep 4, 2022, 1:00:27 AM (3 years ago)
Author:
Paul Smedley
Message:

Change to

Location:
GPL/branches/uniaud32-next
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • GPL/branches/uniaud32-next/alsa-kernel/core/pcm_memory.c

    r711 r721  
    8686        } while (size >= snd_minimum_buffer);
    8787        dmab->bytes = 0; /* tell error */
     88#ifndef TARGET_OS2
    8889        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
    8993                substream->pcm->card->number, substream->pcm->device,
    9094                substream->stream ? 'c' : 'p', substream->number,
     
    181185                                           size, &new_dmab) < 0) {
    182186                                buffer->error = -ENOMEM;
     187#ifndef TARGET_OS2
    183188                                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
    184192                                         substream->pcm->card->number, substream->pcm->device,
    185193                                         substream->stream ? 'c' : 'p', substream->number,
     
    424432                                   size, dmab) < 0) {
    425433                        kfree(dmab);
     434#ifndef TARGET_OS2
    426435                        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
    427439                                 substream->pcm->card->number, substream->pcm->device,
    428440                                 substream->stream ? 'c' : 'p', substream->number,
  • GPL/branches/uniaud32-next/lib32/regcache-rbtree.c

    r654 r721  
    170170                average = 0;
    171171
    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",
    173173                   nodes, registers, average, mem_size);
    174174
  • GPL/branches/uniaud32-next/lib32/regcache.c

    r718 r721  
    729729        count = (cur - base) / map->reg_stride;
    730730
    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",
    732732                count * val_bytes, count, base, cur - map->reg_stride);
    733733
  • GPL/branches/uniaud32-next/lib32/regmap.c

    r718 r721  
    17321732                /* If the write goes beyond the end of the window split it */
    17331733                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",
    17351735                                win_residue, val_len / map->format.val_bytes);
    17361736                        ret = _regmap_raw_write_impl(map, reg, val,
Note: See TracChangeset for help on using the changeset viewer.