mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-22 06:57:57 +00:00
2e715fb4fc
Add support for BCM2712 (Raspberry Pi 5).
3bb5880ab3
Patches were generated from the diff between linux kernel branch linux-6.1.y
and rpi-6.1.y from raspberry pi kernel source:
- git format-patch linux-6.1.y...rpi-6.1.y
Build system: x86_64
Build-tested: bcm2708, bcm2709, bcm2710, bcm2711
Run-tested: bcm2710/RPi3B, bcm2711/RPi4B
Signed-off-by: Marty Jones <mj8263788@gmail.com>
[Remove applied and reverted patches, squash patches and config commits]
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
27 lines
1.0 KiB
Diff
27 lines
1.0 KiB
Diff
From bf1709d2cf2b57c4ea98b8363156835249ae02cc Mon Sep 17 00:00:00 2001
|
|
From: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
|
|
Date: Fri, 22 Sep 2023 12:41:35 +0300
|
|
Subject: [PATCH] media: rp1: cfe: Fix verbose debug print
|
|
|
|
The debug print in cfe_schedule_next_csi2_job() is printed every frame,
|
|
and should thus use cfe_dbg_irq() to avoid spamming, rather than cfe_dbg().
|
|
|
|
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
|
|
---
|
|
drivers/media/platform/raspberrypi/rp1_cfe/cfe.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
--- a/drivers/media/platform/raspberrypi/rp1_cfe/cfe.c
|
|
+++ b/drivers/media/platform/raspberrypi/rp1_cfe/cfe.c
|
|
@@ -518,8 +518,8 @@ static void cfe_schedule_next_csi2_job(s
|
|
node->next_frm = buf;
|
|
list_del(&buf->list);
|
|
|
|
- cfe_dbg("%s: [%s] buffer:%p\n",
|
|
- __func__, node_desc[node->id].name, &buf->vb.vb2_buf);
|
|
+ cfe_dbg_irq("%s: [%s] buffer:%p\n", __func__,
|
|
+ node_desc[node->id].name, &buf->vb.vb2_buf);
|
|
|
|
if (is_meta_node(node)) {
|
|
size = node->fmt.fmt.meta.buffersize;
|