diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-01-24 01:19:57 +0900 |
---|---|---|
committer | Philipp Zabel <p.zabel@pengutronix.de> | 2016-01-25 11:00:33 +0100 |
commit | c41ef91f65ea6151969dde699b206794772d407b (patch) | |
tree | e5cd78ac62ee3d7142f0c742857f4ed911c84665 /drivers/reset | |
parent | e677774f502635c70cb3180fc51ec7ff8c4b27ea (diff) | |
download | linux-c41ef91f65ea6151969dde699b206794772d407b.tar.bz2 |
reset: hisilicon: check return value of reset_controller_register()
The newly added hisilicon reset driver missed the subsystem-wide
fixup by commit d1f15aa09558 ("reset: check return value of
reset_controller_register()"). So fix it now.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
Diffstat (limited to 'drivers/reset')
-rw-r--r-- | drivers/reset/hisilicon/hi6220_reset.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/reset/hisilicon/hi6220_reset.c b/drivers/reset/hisilicon/hi6220_reset.c index 7787a9b1cc67..744b2e796442 100644 --- a/drivers/reset/hisilicon/hi6220_reset.c +++ b/drivers/reset/hisilicon/hi6220_reset.c @@ -83,9 +83,7 @@ static int hi6220_reset_probe(struct platform_device *pdev) data->rc_dev.ops = &hi6220_reset_ops; data->rc_dev.of_node = pdev->dev.of_node; - reset_controller_register(&data->rc_dev); - - return 0; + return reset_controller_register(&data->rc_dev); } static const struct of_device_id hi6220_reset_match[] = { |