mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-26 09:30:53 +07:00
qlcnic: change driver description
o Remove extra printing of mac address o This driver also supports NIC only Qlogic adapters. Signed-off-by: Sritej Velaga <sritej.velaga@qlogic.com> Signed-off-by: Amit Kumar Salecha <amit.salecha@qlogic.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
469c221f97
commit
7f9a0c34d2
@ -589,11 +589,10 @@ int qlcnic_get_mac_address(struct qlcnic_adapter *adapter, u8 *mac)
|
||||
0,
|
||||
QLCNIC_CDRP_CMD_MAC_ADDRESS);
|
||||
|
||||
if (err == QLCNIC_RCODE_SUCCESS) {
|
||||
if (err == QLCNIC_RCODE_SUCCESS)
|
||||
qlcnic_fetch_mac(adapter, QLCNIC_ARG1_CRB_OFFSET,
|
||||
QLCNIC_ARG2_CRB_OFFSET, 0, mac);
|
||||
dev_info(&adapter->pdev->dev, "MAC address: %pM\n", mac);
|
||||
} else {
|
||||
else {
|
||||
dev_err(&adapter->pdev->dev,
|
||||
"Failed to get mac address%d\n", err);
|
||||
err = -EIO;
|
||||
|
@ -35,14 +35,14 @@
|
||||
#include <linux/inetdevice.h>
|
||||
#include <linux/sysfs.h>
|
||||
|
||||
MODULE_DESCRIPTION("QLogic 10 GbE Converged Ethernet Driver");
|
||||
MODULE_DESCRIPTION("QLogic 1/10 GbE Converged/Intelligent Ethernet Driver");
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_VERSION(QLCNIC_LINUX_VERSIONID);
|
||||
MODULE_FIRMWARE(QLCNIC_UNIFIED_ROMIMAGE_NAME);
|
||||
|
||||
char qlcnic_driver_name[] = "qlcnic";
|
||||
static const char qlcnic_driver_string[] = "QLogic Converged Ethernet Driver v"
|
||||
QLCNIC_LINUX_VERSIONID;
|
||||
static const char qlcnic_driver_string[] = "QLogic 1/10 GbE "
|
||||
"Converged/Intelligent Ethernet Driver v" QLCNIC_LINUX_VERSIONID;
|
||||
|
||||
static int port_mode = QLCNIC_PORT_MODE_AUTO_NEG;
|
||||
|
||||
@ -661,7 +661,7 @@ static void get_brd_name(struct qlcnic_adapter *adapter, char *name)
|
||||
}
|
||||
|
||||
if (!found)
|
||||
name = "Unknown";
|
||||
sprintf(name, "%pM Gigabit Ethernet", adapter->mac_addr);
|
||||
}
|
||||
|
||||
static void
|
||||
|
Loading…
Reference in New Issue
Block a user