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

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

Merge "usb: dwc3: Fix offset for register read in dwc3_masked_write_readback"

parents 2443fb67 5fb2febb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -76,7 +76,7 @@ static inline void dwc3_masked_write_readback(void __iomem *base,
	writel_relaxed(write_val, base + offset - DWC3_GLOBALS_REGS_START);

	/* Read back to see if value was written */
	tmp = readl_relaxed(base + offset);
	tmp = readl_relaxed(base + offset - DWC3_GLOBALS_REGS_START);

	dwc3_trace(trace_dwc3_masked_write_readback,
			"addr %p readback val %08x",