Skip to content

Commit

Permalink
ASoC: stm32: explicitly request exclusive reset control
Browse files Browse the repository at this point in the history
Commit a53e35d ("reset: Ensure drivers are explicit when requesting
reset lines") started to transition the reset control request API calls
to explicitly state whether the driver needs exclusive or shared reset
control behavior. Convert all drivers requesting exclusive resets to the
explicit API call so the temporary transition helpers can be removed.

No functional changes.

Cc: Liam Girdwood <lgirdwood@gmail.com>
Cc: Mark Brown <broonie@kernel.org>
Cc: Maxime Coquelin <mcoquelin.stm32@gmail.com>
Cc: Alexandre Torgue <alexandre.torgue@st.com>
Cc: alsa-devel@alsa-project.org
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: Mark Brown <broonie@kernel.org>
  • Loading branch information
Philipp Zabel authored and Mark Brown committed Jul 19, 2017
1 parent 5771a8c commit 635eac1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sound/soc/stm/stm32_i2s.c
Original file line number Diff line number Diff line change
Expand Up @@ -840,7 +840,7 @@ static int stm32_i2s_parse_dt(struct platform_device *pdev,
}

/* Reset */
rst = devm_reset_control_get(&pdev->dev, NULL);
rst = devm_reset_control_get_exclusive(&pdev->dev, NULL);
if (!IS_ERR(rst)) {
reset_control_assert(rst);
udelay(2);
Expand Down
2 changes: 1 addition & 1 deletion sound/soc/stm/stm32_sai.c
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ static int stm32_sai_probe(struct platform_device *pdev)
}

/* reset */
rst = reset_control_get(&pdev->dev, NULL);
rst = reset_control_get_exclusive(&pdev->dev, NULL);
if (!IS_ERR(rst)) {
reset_control_assert(rst);
udelay(2);
Expand Down
2 changes: 1 addition & 1 deletion sound/soc/stm/stm32_spdifrx.c
Original file line number Diff line number Diff line change
Expand Up @@ -930,7 +930,7 @@ static int stm32_spdifrx_probe(struct platform_device *pdev)
return ret;
}

rst = devm_reset_control_get(&pdev->dev, NULL);
rst = devm_reset_control_get_exclusive(&pdev->dev, NULL);
if (!IS_ERR(rst)) {
reset_control_assert(rst);
udelay(2);
Expand Down

0 comments on commit 635eac1

Please sign in to comment.