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

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

Merge "clkdev: Return -EPROBE_DEFER when clock is not found"

parents 7ecc16b1 170cc41e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -143,7 +143,7 @@ struct clk *clk_get_sys(const char *dev_id, const char *con_id)
		cl = NULL;
	mutex_unlock(&clocks_mutex);

	return cl ? cl->clk : ERR_PTR(-ENOENT);
	return cl ? cl->clk : ERR_PTR(-EPROBE_DEFER);
}
EXPORT_SYMBOL(clk_get_sys);