mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-22 04:56:15 +00:00
8c405cdccc
The patches were generated from the RPi repo with the following command: git format-patch v6.6.34..rpi-6.1.y Some patches needed rebasing and, as usual, the applied and reverted, wireless drivers, Github workflows, READMEs and defconfigs patches were removed. Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
24 lines
894 B
Diff
24 lines
894 B
Diff
From 7086ccaf5db208eeebf9fa6e418be569bebd4fc4 Mon Sep 17 00:00:00 2001
|
|
From: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
|
|
Date: Wed, 4 Oct 2023 10:19:47 +0300
|
|
Subject: [PATCH 0646/1085] media: rp1: cfe: Add verbose debug module parameter
|
|
|
|
Expose the verbose debug flag as a module parameter.
|
|
|
|
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
|
|
---
|
|
drivers/media/platform/raspberrypi/rp1_cfe/cfe.c | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
--- a/drivers/media/platform/raspberrypi/rp1_cfe/cfe.c
|
|
+++ b/drivers/media/platform/raspberrypi/rp1_cfe/cfe.c
|
|
@@ -50,6 +50,8 @@
|
|
#define CFE_VERSION "1.0"
|
|
|
|
bool cfe_debug_verbose;
|
|
+module_param_named(verbose_debug, cfe_debug_verbose, bool, 0644);
|
|
+MODULE_PARM_DESC(verbose_debug, "verbose debugging messages");
|
|
|
|
#define cfe_dbg_verbose(fmt, arg...) \
|
|
do { \
|