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

Commit fdd10974 authored by Larry Finger's avatar Larry Finger Committed by John W. Linville
Browse files

b43: Issue warning when RFKILL_INPUT is not enabled



If the system is misconfigured with CONFIG_RFKILL set but CONFIG_RFKILL_INPUT
not set, the built-in radio LEDs will not work. In the current code, no warning
is issued.

Signed-off-by: default avatarLarry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent e07aa378
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -188,6 +188,11 @@ void b43_rfkill_init(struct b43_wldev *dev)
			"The built-in radio LED will not work.\n");
#endif /* CONFIG_RFKILL_INPUT */

#if !defined(CONFIG_RFKILL_INPUT) && !defined(CONFIG_RFKILL_INPUT_MODULE)
	b43warn(wl, "The rfkill-input subsystem is not available. "
		"The built-in radio LED will not work.\n");
#endif

	err = input_register_polled_device(rfk->poll_dev);
	if (err)
		goto err_unreg_rfk;