Commit 3afc2533 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Jakub Kicinski
Browse files

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: default avatarGeert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: default avatarAndrew Lunn <andrew@lunn.ch>
Reviewed-by: default avatarJijie <Shao&lt;shaojijie@huawei.com>
Link: https://patch.msgid.link/c2ac6f20f85056e7b35bd56d424040f996d32109.1749657070.git.geert+renesas@glider.be


Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent c4688ff4
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -5961,8 +5961,8 @@ static int __init hns3_init_module(void)
{
	int ret;

	pr_info("%s: %s - version\n", hns3_driver_name, hns3_driver_string);
	pr_info("%s: %s\n", hns3_driver_name, hns3_copyright);
	pr_debug("%s: %s - version\n", hns3_driver_name, hns3_driver_string);
	pr_debug("%s: %s\n", hns3_driver_name, hns3_copyright);

	client.type = HNAE3_CLIENT_KNIC;
	snprintf(client.name, HNAE3_CLIENT_NAME_LENGTH, "%s",
+1 −1
Original line number Diff line number Diff line
@@ -12904,7 +12904,7 @@ static struct hnae3_ae_algo ae_algo = {

static int __init hclge_init(void)
{
	pr_info("%s is initializing\n", HCLGE_NAME);
	pr_debug("%s is initializing\n", HCLGE_NAME);

	hclge_wq = alloc_workqueue("%s", WQ_UNBOUND, 0, HCLGE_NAME);
	if (!hclge_wq) {