mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-02-05 02:38:20 +00:00
nvmem: lpc18xx-eeprom: 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: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> Cc: Joachim Eastwood <manabian@gmail.com> Cc: linux-arm-kernel@lists.infradead.org Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de> Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ed779b275b
commit
aed0c46e32
@ -197,7 +197,7 @@ static int lpc18xx_eeprom_probe(struct platform_device *pdev)
|
||||
return ret;
|
||||
}
|
||||
|
||||
rst = devm_reset_control_get(dev, NULL);
|
||||
rst = devm_reset_control_get_exclusive(dev, NULL);
|
||||
if (IS_ERR(rst)) {
|
||||
dev_err(dev, "failed to get reset: %ld\n", PTR_ERR(rst));
|
||||
ret = PTR_ERR(rst);
|
||||
|
Loading…
x
Reference in New Issue
Block a user