* meson64-edge/5.19: use `tag:v5.19-rc2`, meson64 kernel config and kernel patches, by @adeepv * meson64-edge/5.19: we don't need `CONFIG_ARCH_ROCKCHIP=y` for meson64, right? * meson64-edge/5.19: remove `meson_drv_shutdown` revert patch, instead `CONFIG_DRM_MESON=y` and its dependencies in .config - this allows other meson64's to shutdown properly, while allowing the N2(+) to reboot without kernel-side hangs * meson64-edge/5.19: odroidn2(+): remove SD UHS modes patch for ODROID N2(+) - it works when cold-booted - but changes voltage to enable - when rebooted, voltage persists and uboot can't read the SD anymore - adding the "odroid,reboot" driver+dt that is supposed to fix this, doesn't - so for now remove it * meson64-edge/5.19: odroidn2(+): add dumb gpio fan at 30 celsius - backport from rework in 5.10 * meson64-edge/5.19: odroidhc4: bring back `fan1_input` by adding fan details to DT - yeah, I know; the cooling map is right there too, so empty, poor thing. for later. * meson64-edge/5.19: bump to 5.19-rc3 * meson64-edge/5.19: radxa-zero: add patch to remove UHS mode so `wifi` works - sent by @pyavitz: https://raw.githubusercontent.com/pyavitz/debian-image-builder/feature/patches/amlogic/radxazero/wifi/001-arm64-dts-amlogic-radxa-zero-sdio-card-speed.patch - tested by @lanefu * meson64-edge/5.19: bump to 5.19-rc4 * meson64-edge/5.19: bump to 5.19-rc5 * meson64-edge/5.19: bump to 5.19-rc7 * meson64-edge/5.19: bump to 5.19.y branch, which is 5.19.0 right now * Add kernel config - tested on Odroid N2+ Co-authored-by: Vyacheslav Bocharov <adeep@lexina.in> Co-authored-by: Igor Pecovnik <igor.pecovnik@gmail.com>
41 lines
1.5 KiB
Diff
41 lines
1.5 KiB
Diff
From 03bfb3f6a703d7671508b698c5a552d0a0e0197b Mon Sep 17 00:00:00 2001
|
|
From: Christian Hewitt <christianshewitt@gmail.com>
|
|
Date: Tue, 7 Jan 2020 07:12:47 +0000
|
|
Subject: [PATCH 055/101] HACK: media: cec: silence CEC timeout message
|
|
|
|
If testing with an AVR that does not pass-through CEC state the system
|
|
log fills with timeout messages. Silence this to stop the log rotation
|
|
and ensure other issues are visible.
|
|
|
|
[ 42.718009] cec-meson_ao_cec: message ff 84 50 00 01 timed out
|
|
[ 45.021994] cec-meson_ao_cec: message ff 87 00 15 82 timed out
|
|
[ 47.325965] cec-meson_ao_cec: message 10 timed out
|
|
[ 49.630023] cec-meson_ao_cec: message 10 timed out
|
|
[ 51.933960] cec-meson_ao_cec: message 10 timed out
|
|
|
|
Signed-off-by: Christian Hewitt <christianshewitt@gmail.com>
|
|
---
|
|
drivers/media/cec/core/cec-adap.c | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/drivers/media/cec/core/cec-adap.c b/drivers/media/cec/core/cec-adap.c
|
|
index 8bf91b5a7d0e..74a33366cc26 100644
|
|
--- a/drivers/media/cec/core/cec-adap.c
|
|
+++ b/drivers/media/cec/core/cec-adap.c
|
|
@@ -501,9 +501,9 @@ int cec_thread_func(void *_adap)
|
|
* default).
|
|
*/
|
|
if (adap->transmitting) {
|
|
- pr_warn("cec-%s: message %*ph timed out\n", adap->name,
|
|
- adap->transmitting->msg.len,
|
|
- adap->transmitting->msg.msg);
|
|
+ //pr_warn("cec-%s: message %*ph timed out\n", adap->name,
|
|
+ // adap->transmitting->msg.len,
|
|
+ // adap->transmitting->msg.msg);
|
|
/* Just give up on this. */
|
|
cec_data_cancel(adap->transmitting,
|
|
CEC_TX_STATUS_TIMEOUT, 0);
|
|
--
|
|
2.17.1
|
|
|