diff options
author | Cruz Julian Bishop <cruzjbishop@gmail.com> | 2012-12-22 09:00:44 +1000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-01-07 14:59:57 -0800 |
commit | 0f5afdd2389d983d38030ff95d2a07373a5550fc (patch) | |
tree | 1dac4a3d78cc3376a60279b72fd555a4b727dcf2 /drivers/staging | |
parent | 94b84e4510f5b625d74e410103d49dfce826a41d (diff) | |
download | kernel_goldelico_gta04-0f5afdd2389d983d38030ff95d2a07373a5550fc.zip kernel_goldelico_gta04-0f5afdd2389d983d38030ff95d2a07373a5550fc.tar.gz kernel_goldelico_gta04-0f5afdd2389d983d38030ff95d2a07373a5550fc.tar.bz2 |
staging: android: Avoid using camelcase in binder.h
This changes the following:
1: BinderDriverReturnProtocol -> binder_driver_return_protocol
2: BinderDriverCommandProtocol -> binder_driver_return_protocol
These enums are not currently used, but still generate noise in checkpatch.
Well, did. They don't now :)
Signed-off-by: Cruz Julian Bishop <cruzjbishop@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r-- | drivers/staging/android/binder.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/android/binder.h b/drivers/staging/android/binder.h index 2f7d195..76ead8d 100644 --- a/drivers/staging/android/binder.h +++ b/drivers/staging/android/binder.h @@ -163,7 +163,7 @@ struct binder_pri_ptr_cookie { void *cookie; }; -enum BinderDriverReturnProtocol { +enum binder_driver_return_protocol { BR_ERROR = _IOR('r', 0, int), /* * int: error code @@ -251,7 +251,7 @@ enum BinderDriverReturnProtocol { */ }; -enum BinderDriverCommandProtocol { +enum binder_driver_command_protocol { BC_TRANSACTION = _IOW('c', 0, struct binder_transaction_data), BC_REPLY = _IOW('c', 1, struct binder_transaction_data), /* |