From 52da343855e5409c4194359f85fafd7a22d38e9e Mon Sep 17 00:00:00 2001 From: Jonas Jelonek Date: Fri, 31 Jul 2026 13:39:38 +0000 Subject: [PATCH] realtek: dsa: rtl931x: downgrade print_matrix to debug Downgrade rtldsa_931x_print_matrix from pr_info to pr_debug to reduce the massive amount printed during boot (64 lines). There doesn't seem any benefit right now for keeping this at info level. And RTL931X is the only variant that uses info-level print right now, all others already use pr_debug. Debug output can be activated individually for people who need this for testing/debugging. Link: https://github.com/openwrt/openwrt/pull/24507 Signed-off-by: Jonas Jelonek --- .../realtek/files-6.18/drivers/net/dsa/rtl83xx/rtl931x.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/target/linux/realtek/files-6.18/drivers/net/dsa/rtl83xx/rtl931x.c b/target/linux/realtek/files-6.18/drivers/net/dsa/rtl83xx/rtl931x.c index e992c45c223..dc3b70da5c7 100644 --- a/target/linux/realtek/files-6.18/drivers/net/dsa/rtl83xx/rtl931x.c +++ b/target/linux/realtek/files-6.18/drivers/net/dsa/rtl83xx/rtl931x.c @@ -456,8 +456,8 @@ void rtldsa_931x_print_matrix(void) for (int i = 0; i < 64; i++) { rtl_table_read(r, i); - pr_info("> %08x %08x\n", sw_r32(rtl_table_data(r, 0)), - sw_r32(rtl_table_data(r, 1))); + pr_debug("> %08x %08x\n", sw_r32(rtl_table_data(r, 0)), + sw_r32(rtl_table_data(r, 1))); } rtl_table_release(r); } -- 2.47.3