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

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

Merge "usb: phy-msm-qusb-v2: Shift the read minor revision value"

parents 19191fdc add117d5
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -183,7 +183,11 @@ static long qfprom_read(struct device *dev, const char *name)
			err = PTR_ERR(buf);
		}
	} else {
		val = *buf;
		/*
		 * The bits are read from bit-0 to bit-29
		 * We're interested in bits 28:29
		 */
		val = (*buf >> 28) & 0x3;
		kfree(buf);
	}