From: Hans Verkuil Date: Wed, 30 Aug 2023 12:31:40 +0000 (+0200) Subject: media: videobuf2: fix typo: vb2_dbuf -> vb2_qbuf X-Git-Tag: v6.7-rc1~51^2~343 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=05b34200a1552d39f2369052ce94d9563a5f15c0;p=thirdparty%2Fkernel%2Flinux.git media: videobuf2: fix typo: vb2_dbuf -> vb2_qbuf Fix a small typo in the debug message: vb2_dbuf -> vb2_qbuf Signed-off-by: Hans Verkuil Reviewed-by: Andrzej Pietrasiewicz --- diff --git a/drivers/media/common/videobuf2/videobuf2-core.c b/drivers/media/common/videobuf2/videobuf2-core.c index cf6727d9c81f3..27aee92f3eea4 100644 --- a/drivers/media/common/videobuf2/videobuf2-core.c +++ b/drivers/media/common/videobuf2/videobuf2-core.c @@ -2890,7 +2890,7 @@ static size_t __vb2_perform_fileio(struct vb2_queue *q, char __user *data, size_ if (copy_timestamp) b->timestamp = ktime_get_ns(); ret = vb2_core_qbuf(q, index, NULL, NULL); - dprintk(q, 5, "vb2_dbuf result: %d\n", ret); + dprintk(q, 5, "vb2_qbuf result: %d\n", ret); if (ret) return ret;