mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-02-14 08:19:28 +00:00
media: stm32-dcmi: explicitly request exclusive reset control
Commit a53e35db70d1 ("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: Maxime Coquelin <mcoquelin.stm32@gmail.com> Cc: Alexandre Torgue <alexandre.torgue@st.com> Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
parent
e706b9ed69
commit
1a48e10282
@ -1209,7 +1209,7 @@ static int dcmi_probe(struct platform_device *pdev)
|
||||
if (!dcmi)
|
||||
return -ENOMEM;
|
||||
|
||||
dcmi->rstc = devm_reset_control_get(&pdev->dev, NULL);
|
||||
dcmi->rstc = devm_reset_control_get_exclusive(&pdev->dev, NULL);
|
||||
if (IS_ERR(dcmi->rstc)) {
|
||||
dev_err(&pdev->dev, "Could not get reset control\n");
|
||||
return -ENODEV;
|
||||
|
Loading…
x
Reference in New Issue
Block a user