diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2016-07-28 15:32:11 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-07-28 15:32:11 -0700 |
commit | c9b011a87dd49bac1632311811c974bb7cd33c25 (patch) | |
tree | 1173cc1d4942339e363910d59522c03e4efd4f00 /drivers | |
parent | ce8c891c3496d3ea4a72ec40beac9a7b7f6649bf (diff) | |
parent | 2dbd85859fca74d3d3a9f05f399c53a89f7ed2bd (diff) |
Merge tag 'hwlock-v4.8' of git://github.com/andersson/remoteproc
Pull hwspinlock updates from Bjorn Andersson:
"Add missing of_node_put() in the Qualcomm driver and update
MAINTAINERS to make sure all hwspinlock related files have a
maintainer listed"
* tag 'hwlock-v4.8' of git://github.com/andersson/remoteproc:
MAINTAINERS: Update hwspinlock paths
hwspinlock: qcom_hwspinlock: add missing of_node_put after calling of_parse_phandle
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/hwspinlock/qcom_hwspinlock.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/hwspinlock/qcom_hwspinlock.c b/drivers/hwspinlock/qcom_hwspinlock.c index c752447fbac7..fa6880b8060a 100644 --- a/drivers/hwspinlock/qcom_hwspinlock.c +++ b/drivers/hwspinlock/qcom_hwspinlock.c @@ -98,6 +98,7 @@ static int qcom_hwspinlock_probe(struct platform_device *pdev) } regmap = syscon_node_to_regmap(syscon); + of_node_put(syscon); if (IS_ERR(regmap)) return PTR_ERR(regmap); |