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

Commit 18661c26 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "dwc3: gadget: Use dbg_event() to log error" into msm-4.9

parents b044e202 6300b45e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -3424,13 +3424,13 @@ static void dwc3_process_event_entry(struct dwc3 *dwc,
	trace_dwc3_event(event->raw);
	/* skip event processing in absence of vbus */
	if (!dwc->vbus_active) {
		dev_err(dwc->dev, "SKIP EVT:%x", event->raw);
		dbg_event(0xFF, "SKIP_EVT", event->raw);
		return;
	}

	/* If run/stop is cleared don't process any more events */
	if (!dwc->pullups_connected) {
		dev_err(dwc->dev, "SKIP_EVT_PULLUP:%x", event->raw);
		dbg_event(0xFF, "SKIP_EVT_PULLUP", event->raw);
		return;
	}