diff options
author | Andrew Bridges <andrew@slova.app> | 2020-10-27 22:56:55 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-11-09 18:42:16 +0100 |
commit | 6c20032c22d9823f35cd673b7f69ce73a49582b0 (patch) | |
tree | c08543fe7c74345fdfac4048587f05efcf21451d /drivers/android | |
parent | 385997dc17ab4927bad332c1283dc461a973ab1d (diff) | |
download | linux-6c20032c22d9823f35cd673b7f69ce73a49582b0.tar.bz2 |
Android: binder: added a missing blank line after declaration
Fixed a coding style issue.
Signed-off-by: Andrew Bridges <andrew@slova.app>
Link: https://lore.kernel.org/r/20201027225655.650922-1-andrew@slova.app
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/android')
-rw-r--r-- | drivers/android/binder.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/android/binder.c b/drivers/android/binder.c index b5117576792b..3241d233a12d 100644 --- a/drivers/android/binder.c +++ b/drivers/android/binder.c @@ -3614,6 +3614,7 @@ static int binder_thread_write(struct binder_proc *proc, ret = -1; if (increment && !target) { struct binder_node *ctx_mgr_node; + mutex_lock(&context->context_mgr_node_lock); ctx_mgr_node = context->binder_context_mgr_node; if (ctx_mgr_node) { |