Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

net: hns3: Demote load and progress messages to debug level

No driver should spam the kernel log when merely being loaded.
The message in hclge_init() is clearly a debug message.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Reviewed-by: Jijie Shao<shaojijie@huawei.com>
Link: https://patch.msgid.link/c2ac6f20f85056e7b35bd56d424040f996d32109.1749657070.git.geert+renesas@glider.be
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

authored by

Geert Uytterhoeven and committed by
Jakub Kicinski
3afc2533 c4688ff4

+3 -3
+2 -2
drivers/net/ethernet/hisilicon/hns3/hns3_enet.c
··· 5961 5961 { 5962 5962 int ret; 5963 5963 5964 - pr_info("%s: %s - version\n", hns3_driver_name, hns3_driver_string); 5965 - pr_info("%s: %s\n", hns3_driver_name, hns3_copyright); 5964 + pr_debug("%s: %s - version\n", hns3_driver_name, hns3_driver_string); 5965 + pr_debug("%s: %s\n", hns3_driver_name, hns3_copyright); 5966 5966 5967 5967 client.type = HNAE3_CLIENT_KNIC; 5968 5968 snprintf(client.name, HNAE3_CLIENT_NAME_LENGTH, "%s",
+1 -1
drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c
··· 12904 12904 12905 12905 static int __init hclge_init(void) 12906 12906 { 12907 - pr_info("%s is initializing\n", HCLGE_NAME); 12907 + pr_debug("%s is initializing\n", HCLGE_NAME); 12908 12908 12909 12909 hclge_wq = alloc_workqueue("%s", WQ_UNBOUND, 0, HCLGE_NAME); 12910 12910 if (!hclge_wq) {