forked from luck/tmp_suning_uos_patched
watchdog: rt2880: explicitly request exclusive reset control
Commit a53e35db70
("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: linux-watchdog@vger.kernel.org
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
This commit is contained in:
parent
39055bbb44
commit
a248e5e9a7
|
@ -152,7 +152,7 @@ static int rt288x_wdt_probe(struct platform_device *pdev)
|
|||
if (IS_ERR(rt288x_wdt_clk))
|
||||
return PTR_ERR(rt288x_wdt_clk);
|
||||
|
||||
rt288x_wdt_reset = devm_reset_control_get(&pdev->dev, NULL);
|
||||
rt288x_wdt_reset = devm_reset_control_get_exclusive(&pdev->dev, NULL);
|
||||
if (!IS_ERR(rt288x_wdt_reset))
|
||||
reset_control_deassert(rt288x_wdt_reset);
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user