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

Commit dfb72c4f authored by Daniel Drake's avatar Daniel Drake Committed by John W. Linville
Browse files

libertas_usb: program OLPC EC wakeup mask for wake-on-WLAN



OLPC power management code has recently gone upstream. This piece
completes the puzzle for libertas_usb, which now programs the OLPC EC
for wlan wakeups when they have been requested.

Signed-off-by: default avatarDaniel Drake <dsd@laptop.org>
Acked-by: default avatarDan Williams <dcbw@redhat.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 9c204b46
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -1112,6 +1112,15 @@ static int if_usb_suspend(struct usb_interface *intf, pm_message_t message)
	if (priv->psstate != PS_STATE_FULL_POWER)
		return -1;

#ifdef CONFIG_OLPC
	if (machine_is_olpc()) {
		if (priv->wol_criteria == EHS_REMOVE_WAKEUP)
			olpc_ec_wakeup_clear(EC_SCI_SRC_WLAN);
		else
			olpc_ec_wakeup_set(EC_SCI_SRC_WLAN);
	}
#endif

	ret = lbs_suspend(priv);
	if (ret)
		goto out;