Skip to content

Commit d42d440

Browse files
Jiawen Wukuba-moo
authored andcommitted
net: libwx: Fix log level
There is a log should be printed as info level, not error level. Fixes: 9bfd659 ("net: libwx: Add sriov api for wangxun nics") Signed-off-by: Jiawen Wu <jiawenwu@trustnetic.com> Reviewed-by: Michal Swiatkowski <michal.swiatkowski@linux.intel.com> Link: https://patch.msgid.link/67409DB57B87E2F0+20250519063357.21164-1-jiawenwu@trustnetic.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
1 parent f440926 commit d42d440

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/net/ethernet/wangxun/libwx/wx_sriov.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ static int __wx_enable_sriov(struct wx *wx, u8 num_vfs)
7676
u32 value = 0;
7777

7878
set_bit(WX_FLAG_SRIOV_ENABLED, wx->flags);
79-
wx_err(wx, "SR-IOV enabled with %d VFs\n", num_vfs);
79+
dev_info(&wx->pdev->dev, "SR-IOV enabled with %d VFs\n", num_vfs);
8080

8181
/* Enable VMDq flag so device will be set in VM mode */
8282
set_bit(WX_FLAG_VMDQ_ENABLED, wx->flags);

0 commit comments

Comments
 (0)