diff options
author | Olof Johansson <olof@lixom.net> | 2017-12-02 16:59:09 -0800 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2017-12-02 16:59:09 -0800 |
commit | a760576b683bf248a0c9b7a6e503ca14dcdd1b5d (patch) | |
tree | 350f5469acae83026f64f77666e5f37eda7695d4 | |
parent | 1864f527ae700ab1375dd83ff9e8ee31f22ba337 (diff) | |
parent | f044113113dd95ba73916bde10e804d3cdfa2662 (diff) | |
download | linux-a760576b683bf248a0c9b7a6e503ca14dcdd1b5d.tar.gz linux-a760576b683bf248a0c9b7a6e503ca14dcdd1b5d.tar.xz |
Merge tag 'tee-drv-fix-for-4.15' of https://git.linaro.org/people/jens.wiklander/linux-tee into fixes
One small fix for optee_driver_init()
* Fixes problem with an invalid call to of_node_put() in
optee_driver_init()
* tag 'tee-drv-fix-for-4.15' of https://git.linaro.org/people/jens.wiklander/linux-tee:
optee: fix invalid of_node_put() in optee_driver_init()
Signed-off-by: Olof Johansson <olof@lixom.net>
-rw-r--r-- | drivers/tee/optee/core.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/tee/optee/core.c b/drivers/tee/optee/core.c index 7952357df9c8..edb6e4e9ef3a 100644 --- a/drivers/tee/optee/core.c +++ b/drivers/tee/optee/core.c @@ -590,7 +590,6 @@ static int __init optee_driver_init(void) return -ENODEV; np = of_find_matching_node(fw_np, optee_match); - of_node_put(fw_np); if (!np) return -ENODEV; |