Skip to content

Commit d006edb

Browse files
pH5broonie
authored andcommitted
spi: tegra114: explicitly request exclusive reset control
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: Laxman Dewangan <[email protected]> Cc: Mark Brown <[email protected]> Cc: Thierry Reding <[email protected]> Cc: Jonathan Hunter <[email protected]> Cc: [email protected] Cc: [email protected] Signed-off-by: Philipp Zabel <[email protected]> Signed-off-by: Mark Brown <[email protected]>
1 parent 73b3275 commit d006edb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/spi/spi-tegra114.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1083,7 +1083,7 @@ static int tegra_spi_probe(struct platform_device *pdev)
10831083
goto exit_free_irq;
10841084
}
10851085

1086-
tspi->rst = devm_reset_control_get(&pdev->dev, "spi");
1086+
tspi->rst = devm_reset_control_get_exclusive(&pdev->dev, "spi");
10871087
if (IS_ERR(tspi->rst)) {
10881088
dev_err(&pdev->dev, "can not get reset\n");
10891089
ret = PTR_ERR(tspi->rst);

0 commit comments

Comments
 (0)