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

Commit d9c51f4c authored by Dan Carpenter's avatar Dan Carpenter Committed by Kishon Vijay Abraham I
Browse files

phy: brcm-sata: fix a timeout test in init



We want to timeout with try set to zero so this should be a pre-op
instead of post-op.

Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarKishon Vijay Abraham I <kishon@ti.com>
parent aea430ee
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -335,7 +335,7 @@ static int brcm_nsp_sata_init(struct brcm_sata_port *port)

	/* Wait for pll_seq_done bit */
	try = 50;
	while (try--) {
	while (--try) {
		val = brcm_sata_phy_rd(base, BLOCK0_REG_BANK,
					BLOCK0_XGXSSTATUS);
		if (val & BLOCK0_XGXSSTATUS_PLL_LOCK)