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

Commit 274a1874 authored by Michael Trimarchi's avatar Michael Trimarchi Committed by Greg Kroah-Hartman
Browse files

usb: chipidea: usbmisc: small clean up



The register write can be done outside the if and else condition

Signed-off-by: default avatarMichael Trimarchi <michael@amarulasolutions.com>
Signed-off-by: default avatarPeter Chen <peter.chen@nxp.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 26250d54
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -315,13 +315,12 @@ static int usbmisc_imx6q_set_wakeup
	val = readl(usbmisc->base + data->index * 4);
	if (enabled) {
		val |= wakeup_setting;
		writel(val, usbmisc->base + data->index * 4);
	} else {
		if (val & MX6_BM_WAKEUP_INTR)
			pr_debug("wakeup int at ci_hdrc.%d\n", data->index);
		val &= ~wakeup_setting;
		writel(val, usbmisc->base + data->index * 4);
	}
	writel(val, usbmisc->base + data->index * 4);
	spin_unlock_irqrestore(&usbmisc->lock, flags);

	return ret;