wilc1000: Fix copy-and-paste typo in wilc_set_mac_address

The messages appears to have been copied from wilc_get_mac_address and
says "get" when it should say "set".

Signed-off-by: David Mosberger-Tang <davidm@egauge.net>
Signed-off-by: Kalle Valo <kvalo@kernel.org>
Link: https://lore.kernel.org/r/20211206232709.3192856-2-davidm@egauge.net
This commit is contained in:
David Mosberger-Tang 2021-12-06 23:27:29 +00:00 committed by Kalle Valo
parent 4c02043c5a
commit f92b9f9674
1 changed files with 1 additions and 1 deletions

View File

@ -1312,7 +1312,7 @@ int wilc_set_mac_address(struct wilc_vif *vif, u8 *mac_addr)
result = wilc_send_config_pkt(vif, WILC_SET_CFG, &wid, 1);
if (result)
netdev_err(vif->ndev, "Failed to get mac address\n");
netdev_err(vif->ndev, "Failed to set mac address\n");
return result;
}