mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-25 13:49:26 +00:00
3a5584e0df
Adds latest 6.6 patches from the Raspberry Pi repository. These patches were generated from: https://github.com/raspberrypi/linux/commits/rpi-6.6.y/ With the following command: git format-patch -N v6.6.67..HEAD (HEAD -> 811ff707533bcd67cdcd368bbd46223082009b12) Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com> (cherry picked from commit 692205305db14deeff1a2dc4a6d7f87e19fc418b)
29 lines
1.2 KiB
Diff
29 lines
1.2 KiB
Diff
From 0a5be0fe6ba3a981508421131def7eab55d6d75c Mon Sep 17 00:00:00 2001
|
|
From: Phil Elwell <phil@raspberrypi.com>
|
|
Date: Thu, 5 Dec 2024 12:08:23 +0000
|
|
Subject: [PATCH] serial: rpi-fw-uart: Demote debug log messages
|
|
|
|
A dev_info call in rpi_fw_uart_configure causes kernel log output every
|
|
time one opens the UART. Demote it to dev_dbg.
|
|
|
|
Signed-off-by: Phil Elwell <phil@raspberrypi.com>
|
|
---
|
|
drivers/tty/serial/rpi-fw-uart.c | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
--- a/drivers/tty/serial/rpi-fw-uart.c
|
|
+++ b/drivers/tty/serial/rpi-fw-uart.c
|
|
@@ -277,9 +277,9 @@ static int rpi_fw_uart_configure(struct
|
|
dev_dbg(port->dev, "version %08x, reg addr %x\n", msg.version,
|
|
msg.fifo_reg_base);
|
|
|
|
- dev_info(port->dev, "started %d baud %u data %u stop %u rx %u tx %u flags %u fifosize %u\n",
|
|
- msg.start, msg.baud, msg.data_bits, msg.stop_bits,
|
|
- msg.gpio_rx, msg.gpio_tx, msg.flags, msg.fifosize);
|
|
+ dev_dbg(port->dev, "started %d baud %u data %u stop %u rx %u tx %u flags %u fifosize %u\n",
|
|
+ msg.start, msg.baud, msg.data_bits, msg.stop_bits,
|
|
+ msg.gpio_rx, msg.gpio_tx, msg.flags, msg.fifosize);
|
|
|
|
if (msg.fifosize != port->fifosize) {
|
|
dev_err(port->dev, "Expected fifo size %u actual %u",
|