Use v4l2_type_names to indicate which of the two queues is busy.

Signed-off-by: Philipp Zabel <p.za...@pengutronix.de>
---
 drivers/media/platform/coda/coda-common.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/media/platform/coda/coda-common.c 
b/drivers/media/platform/coda/coda-common.c
index fd9bc19cd79b..b3d73965614a 100644
--- a/drivers/media/platform/coda/coda-common.c
+++ b/drivers/media/platform/coda/coda-common.c
@@ -703,7 +703,8 @@ static int coda_s_fmt(struct coda_ctx *ctx, struct 
v4l2_format *f,
                return -EINVAL;
 
        if (vb2_is_busy(vq)) {
-               v4l2_err(&ctx->dev->v4l2_dev, "%s queue busy\n", __func__);
+               v4l2_err(&ctx->dev->v4l2_dev, "%s: %s queue busy: %d\n",
+                        __func__, v4l2_type_names[f->type], vq->num_buffers);
                return -EBUSY;
        }
 
-- 
2.19.1

Reply via email to