b43: always print info about radio (manuf, id, revision)
Type of radio has a major meaning for the driver. There is quite some code that does initialization/calibration depending on the radio rev. Knowing radio params is quite important to provide help to users, so print it even with debugging disabled. Signed-off-by: Rafał Miłecki <zajec5@gmail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
ca424b2022
commit
88d825bffd
|
@ -4478,12 +4478,12 @@ static int b43_phy_versioning(struct b43_wldev *dev)
|
||||||
B43_WARN_ON(1);
|
B43_WARN_ON(1);
|
||||||
}
|
}
|
||||||
if (unsupported) {
|
if (unsupported) {
|
||||||
b43err(dev->wl, "FOUND UNSUPPORTED RADIO "
|
b43err(dev->wl,
|
||||||
"(Manuf 0x%X, Version 0x%X, Revision %u)\n",
|
"FOUND UNSUPPORTED RADIO (Manuf 0x%X, ID 0x%X, Revision %u)\n",
|
||||||
radio_manuf, radio_ver, radio_rev);
|
radio_manuf, radio_ver, radio_rev);
|
||||||
return -EOPNOTSUPP;
|
return -EOPNOTSUPP;
|
||||||
}
|
}
|
||||||
b43dbg(dev->wl, "Found Radio: Manuf 0x%X, Version 0x%X, Revision %u\n",
|
b43info(dev->wl, "Found Radio: Manuf 0x%X, ID 0x%X, Revision %u\n",
|
||||||
radio_manuf, radio_ver, radio_rev);
|
radio_manuf, radio_ver, radio_rev);
|
||||||
|
|
||||||
phy->radio_manuf = radio_manuf;
|
phy->radio_manuf = radio_manuf;
|
||||||
|
|
Loading…
Reference in New Issue