mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 06:08:08 +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>
26 lines
810 B
Diff
26 lines
810 B
Diff
From 0924b74687bd195b98f223814ff88b4227654e85 Mon Sep 17 00:00:00 2001
|
|
From: Phil Elwell <phil@raspberrypi.com>
|
|
Date: Mon, 20 Nov 2023 14:46:14 +0000
|
|
Subject: [PATCH] w1: Disable kernel log spam
|
|
|
|
See: https://forums.raspberrypi.com/viewtopic.php?p=2159344
|
|
|
|
Signed-off-by: Phil Elwell <phil@raspberrypi.com>
|
|
---
|
|
drivers/w1/w1.c | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
--- a/drivers/w1/w1.c
|
|
+++ b/drivers/w1/w1.c
|
|
@@ -742,8 +742,10 @@ int w1_attach_slave_device(struct w1_mas
|
|
atomic_set(&sl->refcnt, 1);
|
|
atomic_inc(&sl->master->refcnt);
|
|
dev->slave_count++;
|
|
+#if 0
|
|
dev_info(&dev->dev, "Attaching one wire slave %02x.%012llx crc %02x\n",
|
|
rn->family, (unsigned long long)rn->id, rn->crc);
|
|
+#endif
|
|
|
|
/* slave modules need to be loaded in a context with unlocked mutex */
|
|
mutex_unlock(&dev->mutex);
|