Thread (12 messages) flat view 12 messages, 3 authors, 2020-08-12

Re: [PATCH 3/3] mmc: mediatek: add optional module reset property

From: Frank Wunderlich <hidden>
Date: 2020-08-12 20:00:21
Also in: linux-arm-kernel, linux-mediatek, linux-mmc, lkml

Tested with these 2 changes below too.

Am 12. August 2020 14:08:19 MESZ schrieb Philipp Zabel [off-list ref]:
quoted
+	if (!IS_ERR(host->reset)) {
+		reset_control_assert(host->reset);
+		usleep_range(10, 50);
+		reset_control_deassert(host->reset);
+	}
+
This should be:

if (host->reset) {
	reset_control_assert(host->reset);
	usleep_range(10, 50);
	reset_control_deassert(host->reset);
}
quoted
+	host->reset = devm_reset_control_get_optional_exclusive(&pdev->dev,
+								"hrst");
+	if (PTR_ERR(host->reset) == -EPROBE_DEFER)
+		return PTR_ERR(host->reset);
+
This should be:

host->reset = devm_reset_control_get_optional_exclusive(&pdev->dev,
							"hrst");
if (IS_ERR(host->reset))
	return PTR_ERR(host->reset);
With these two changes,

Reviewed-by: Philipp Zabel <p.zabel@pengutronix.de>
regards Frank
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help