bcm27xx: update 6.1 patches to latest version
[openwrt/openwrt.git] / target / linux / bcm27xx / patches-6.1 / 950-1001-media-rp1-cfe-Fix-verbose-debug-print.patch
1 From bf1709d2cf2b57c4ea98b8363156835249ae02cc Mon Sep 17 00:00:00 2001
2 From: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
3 Date: Fri, 22 Sep 2023 12:41:35 +0300
4 Subject: [PATCH] media: rp1: cfe: Fix verbose debug print
5
6 The debug print in cfe_schedule_next_csi2_job() is printed every frame,
7 and should thus use cfe_dbg_irq() to avoid spamming, rather than cfe_dbg().
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 @@ -518,8 +518,8 @@ static void cfe_schedule_next_csi2_job(s
17 node->next_frm = buf;
18 list_del(&buf->list);
19
20 - cfe_dbg("%s: [%s] buffer:%p\n",
21 - __func__, node_desc[node->id].name, &buf->vb.vb2_buf);
22 + cfe_dbg_irq("%s: [%s] buffer:%p\n", __func__,
23 + node_desc[node->id].name, &buf->vb.vb2_buf);
24
25 if (is_meta_node(node)) {
26 size = node->fmt.fmt.meta.buffersize;