diff options
author | Martijn Coenen <maco@android.com> | 2018-01-04 05:21:17 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-01-09 11:59:21 -0500 |
commit | e940c10875b2398a85670130b8b12bd8ff54eb4c (patch) | |
tree | 45b1f2485f481bb772fb46cf264b531006c4fdcc /drivers/android | |
parent | 4a5f3cde4d51c7afce859aed9d74d197751896d5 (diff) |
ANDROID: binder: Remove obsolete proc waitqueue.
It was no longer being used.
Signed-off-by: Martijn Coenen <maco@android.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/android')
-rw-r--r-- | drivers/android/binder.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/android/binder.c b/drivers/android/binder.c index de4b67f09ddb..7c4b97c04950 100644 --- a/drivers/android/binder.c +++ b/drivers/android/binder.c | |||
@@ -493,8 +493,6 @@ enum binder_deferred_state { | |||
493 | * (protected by @inner_lock) | 493 | * (protected by @inner_lock) |
494 | * @todo: list of work for this process | 494 | * @todo: list of work for this process |
495 | * (protected by @inner_lock) | 495 | * (protected by @inner_lock) |
496 | * @wait: wait queue head to wait for proc work | ||
497 | * (invariant after initialized) | ||
498 | * @stats: per-process binder statistics | 496 | * @stats: per-process binder statistics |
499 | * (atomics, no lock needed) | 497 | * (atomics, no lock needed) |
500 | * @delivered_death: list of delivered death notification | 498 | * @delivered_death: list of delivered death notification |
@@ -537,7 +535,6 @@ struct binder_proc { | |||
537 | bool is_dead; | 535 | bool is_dead; |
538 | 536 | ||
539 | struct list_head todo; | 537 | struct list_head todo; |
540 | wait_queue_head_t wait; | ||
541 | struct binder_stats stats; | 538 | struct binder_stats stats; |
542 | struct list_head delivered_death; | 539 | struct list_head delivered_death; |
543 | int max_threads; | 540 | int max_threads; |