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

Commit b202c42c authored by Roger Quadros's avatar Roger Quadros Committed by Felipe Balbi
Browse files

usb: dwc3: debugfs: remove unnecessary | operator



Each role is mutually exclusive, the | operator is unnecessary. Remove
it.

Signed-off-by: default avatarRoger Quadros <rogerq@ti.com>
Signed-off-by: default avatarFelipe Balbi <felipe.balbi@linux.intel.com>
parent 6b3261a2
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -327,13 +327,13 @@ static ssize_t dwc3_mode_write(struct file *file,
		return -EFAULT;

	if (!strncmp(buf, "host", 4))
		mode |= DWC3_GCTL_PRTCAP_HOST;
		mode = DWC3_GCTL_PRTCAP_HOST;

	if (!strncmp(buf, "device", 6))
		mode |= DWC3_GCTL_PRTCAP_DEVICE;
		mode = DWC3_GCTL_PRTCAP_DEVICE;

	if (!strncmp(buf, "otg", 3))
		mode |= DWC3_GCTL_PRTCAP_OTG;
		mode = DWC3_GCTL_PRTCAP_OTG;

	if (mode) {
		spin_lock_irqsave(&dwc->lock, flags);