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

media: Rename vb2_m2m_request_queue -> v4l2_m2m_request_queue

To be consistent with the rest of the mem2mem helpers,
rename vb2_m2m_request_queue to v4l2_m2m_request_queue.

This is just a cosmetic change.

Signed-off-by: Ezequiel Garcia <ezequiel@collabora.com>
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>

authored by

Ezequiel Garcia and committed by
Mauro Carvalho Chehab
ef86eaf9 2efaf6eb

+5 -5
+1 -1
drivers/media/platform/vim2m.c
··· 1009 1009 1010 1010 static const struct media_device_ops m2m_media_ops = { 1011 1011 .req_validate = vb2_request_validate, 1012 - .req_queue = vb2_m2m_request_queue, 1012 + .req_queue = v4l2_m2m_request_queue, 1013 1013 }; 1014 1014 1015 1015 static int vim2m_probe(struct platform_device *pdev)
+2 -2
drivers/media/v4l2-core/v4l2-mem2mem.c
··· 953 953 } 954 954 EXPORT_SYMBOL_GPL(v4l2_m2m_buf_queue); 955 955 956 - void vb2_m2m_request_queue(struct media_request *req) 956 + void v4l2_m2m_request_queue(struct media_request *req) 957 957 { 958 958 struct media_request_object *obj, *obj_safe; 959 959 struct v4l2_m2m_ctx *m2m_ctx = NULL; ··· 997 997 if (m2m_ctx) 998 998 v4l2_m2m_try_schedule(m2m_ctx); 999 999 } 1000 - EXPORT_SYMBOL_GPL(vb2_m2m_request_queue); 1000 + EXPORT_SYMBOL_GPL(v4l2_m2m_request_queue); 1001 1001 1002 1002 /* Videobuf2 ioctl helpers */ 1003 1003
+1 -1
drivers/staging/media/sunxi/cedrus/cedrus.c
··· 253 253 254 254 static const struct media_device_ops cedrus_m2m_media_ops = { 255 255 .req_validate = cedrus_request_validate, 256 - .req_queue = vb2_m2m_request_queue, 256 + .req_queue = v4l2_m2m_request_queue, 257 257 }; 258 258 259 259 static int cedrus_probe(struct platform_device *pdev)
+1 -1
include/media/v4l2-mem2mem.h
··· 624 624 625 625 /* v4l2 request helper */ 626 626 627 - void vb2_m2m_request_queue(struct media_request *req); 627 + void v4l2_m2m_request_queue(struct media_request *req); 628 628 629 629 /* v4l2 ioctl helpers */ 630 630