bcm27xx: update 6.1 patches to latest version
[openwrt/staging/svanheule.git] / target / linux / bcm27xx / patches-6.1 / 950-1199-media-rp1-cfe-Fix-verbose-debug-print.patch
1 From 8ef68aadaa3aa29bc2661ab44db4ddc50e77cef5 Mon Sep 17 00:00:00 2001
2 From: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
3 Date: Wed, 4 Oct 2023 11:25:16 +0300
4 Subject: [PATCH] media: rp1: cfe: Fix verbose debug print
5
6 Switch a debug print from cfe_dbg() to cfe_dbg_verbose() as it will be
7 printed often while streaming.
8
9 Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
10 ---
11 drivers/media/platform/raspberrypi/rp1_cfe/cfe.c | 4 ++--
12 1 file changed, 2 insertions(+), 2 deletions(-)
13
14 --- a/drivers/media/platform/raspberrypi/rp1_cfe/cfe.c
15 +++ b/drivers/media/platform/raspberrypi/rp1_cfe/cfe.c
16 @@ -975,8 +975,8 @@ static void cfe_buffer_queue(struct vb2_
17
18 if (!cfe->job_queued && cfe->job_ready &&
19 test_all_nodes(cfe, NODE_ENABLED, NODE_STREAMING)) {
20 - cfe_dbg("Preparing job immediately for channel %u\n",
21 - node->id);
22 + cfe_dbg_verbose("Preparing job immediately for channel %u\n",
23 + node->id);
24 cfe_prepare_next_job(cfe);
25 }
26