Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6a724d68 authored by Michael Buesch's avatar Michael Buesch Committed by David S. Miller
Browse files

[B43]: Remove the "radio hw enabled" message on startup.



This message is useless. Only report state changes.

Cc: Larry Finger <larry.finger@lwfinger.net>
Signed-off-by: default avatarMichael Buesch <mb@bu3sch.de>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 61609bc0
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -2227,9 +2227,6 @@ static int b43_chip_init(struct b43_wldev *dev)
	if (err)
		goto err_gpio_cleanup;
	b43_radio_turn_on(dev);
	dev->radio_hw_enable = b43_is_hw_radio_enabled(dev);
	b43dbg(dev->wl, "Radio %s by hardware\n",
	       dev->radio_hw_enable ? "enabled" : "disabled");

	b43_write16(dev, 0x03E6, 0x0000);
	err = b43_phy_init(dev);
@@ -3252,6 +3249,9 @@ static void setup_struct_wldev_for_init(struct b43_wldev *dev)
{
	/* Flags */
	dev->reg124_set_0x4 = 0;
	/* Assume the radio is enabled. If it's not enabled, the state will
	 * immediately get fixed on the first periodic work run. */
	dev->radio_hw_enable = 1;

	/* Stats */
	memset(&dev->stats, 0, sizeof(dev->stats));