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

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

Merge "coresight: etm3x: making error message unambiguous"

parents 9d9ed080 0f526cf3
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -191,7 +191,8 @@ static void etm_set_prog(struct etm_drvdata *drvdata)
	isb();
	if (coresight_timeout_etm(drvdata, ETMSR, ETMSR_PROG_BIT, 1)) {
		dev_err(drvdata->dev,
			"timeout observed when probing at offset %#x\n", ETMSR);
			"%s: timeout observed when probing at offset %#x\n",
			__func__, ETMSR);
	}
}

@@ -209,7 +210,8 @@ static void etm_clr_prog(struct etm_drvdata *drvdata)
	isb();
	if (coresight_timeout_etm(drvdata, ETMSR, ETMSR_PROG_BIT, 0)) {
		dev_err(drvdata->dev,
			"timeout observed when probing at offset %#x\n", ETMSR);
			"%s: timeout observed when probing at offset %#x\n",
			__func__, ETMSR);
	}
}