lkml.org 
[lkml]   [2022]   [Jan]   [24]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 5.16 0119/1039] media: videobuf2: Fix the size printk format
    Date
    From: Dillon Min <dillon.minfei@gmail.com>

    [ Upstream commit c9ee220d76775e42f35d634479c978d9350077d3 ]

    Since the type of parameter size is unsigned long,
    it should printk by %lu, instead of %ld, fix it.

    Fixes: 7952be9b6ece ("media: drivers/media/common/videobuf2: rename from videobuf")
    Signed-off-by: Dillon Min <dillon.minfei@gmail.com>
    Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    Signed-off-by: Sasha Levin <sashal@kernel.org>
    ---
    drivers/media/common/videobuf2/videobuf2-dma-contig.c | 8 ++++----
    1 file changed, 4 insertions(+), 4 deletions(-)

    diff --git a/drivers/media/common/videobuf2/videobuf2-dma-contig.c b/drivers/media/common/videobuf2/videobuf2-dma-contig.c
    index 556e42ba66e55..7c4096e621738 100644
    --- a/drivers/media/common/videobuf2/videobuf2-dma-contig.c
    +++ b/drivers/media/common/videobuf2/videobuf2-dma-contig.c
    @@ -257,7 +257,7 @@ static void *vb2_dc_alloc(struct vb2_buffer *vb,
    ret = vb2_dc_alloc_coherent(buf);

    if (ret) {
    - dev_err(dev, "dma alloc of size %ld failed\n", size);
    + dev_err(dev, "dma alloc of size %lu failed\n", size);
    kfree(buf);
    return ERR_PTR(-ENOMEM);
    }
    @@ -298,9 +298,9 @@ static int vb2_dc_mmap(void *buf_priv, struct vm_area_struct *vma)

    vma->vm_ops->open(vma);

    - pr_debug("%s: mapped dma addr 0x%08lx at 0x%08lx, size %ld\n",
    - __func__, (unsigned long)buf->dma_addr, vma->vm_start,
    - buf->size);
    + pr_debug("%s: mapped dma addr 0x%08lx at 0x%08lx, size %lu\n",
    + __func__, (unsigned long)buf->dma_addr, vma->vm_start,
    + buf->size);

    return 0;
    }
    --
    2.34.1


    \
     
     \ /
      Last update: 2022-01-25 00:54    [W:4.018 / U:0.624 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site