Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

media: videobuf2-dma-contig.c: remove spurious 'b' in message

Remove a spurious 'b' in the "contiguous chunk is too small %lu/%lu b"
message.

Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>

authored by

Hans Verkuil and committed by
Mauro Carvalho Chehab
364152dd dea42fb7

+2 -2
+2 -2
drivers/media/common/videobuf2/videobuf2-dma-contig.c
··· 593 593 /* checking if dmabuf is big enough to store contiguous chunk */ 594 594 contig_size = vb2_dc_get_contiguous_size(sgt); 595 595 if (contig_size < buf->size) { 596 - pr_err("contiguous chunk is too small %lu/%lu b\n", 597 - contig_size, buf->size); 596 + pr_err("contiguous chunk is too small %lu/%lu\n", 597 + contig_size, buf->size); 598 598 dma_buf_unmap_attachment(buf->db_attach, sgt, buf->dma_dir); 599 599 return -EFAULT; 600 600 }