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

Commit 8ad9375f authored by Aaro Koskinen's avatar Aaro Koskinen Committed by Tomi Valkeinen
Browse files

OMAPDSS: do not fail if dpll4_m4_ck is missing



Do not fail if dpll4_m4_ck is missing. The clock is not there on omap24xx,
so this should not be a hard error.

The patch retains the functionality before the commit 185bae10 (OMAPDSS:
DSS: Cleanup cpu_is_xxxx checks).

Signed-off-by: default avatarAaro Koskinen <aaro.koskinen@iki.fi>
Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
parent c415187b
Loading
Loading
Loading
Loading
+9 −5
Original line number Diff line number Diff line
@@ -697,12 +697,16 @@ static int dss_get_clocks(void)

	dss.dss_clk = clk;

	if (dss.feat->clk_name) {
		clk = clk_get(NULL, dss.feat->clk_name);
		if (IS_ERR(clk)) {
			DSSERR("Failed to get %s\n", dss.feat->clk_name);
			r = PTR_ERR(clk);
			goto err;
		}
	} else {
		clk = NULL;
	}

	dss.dpll4_m4_ck = clk;