summaryrefslogtreecommitdiffstats
path: root/drivers/staging/android
diff options
context:
space:
mode:
authorCruz Julian Bishop2012-12-22 00:00:44 +0100
committerGreg Kroah-Hartman2013-01-07 23:59:57 +0100
commit0f5afdd2389d983d38030ff95d2a07373a5550fc (patch)
tree1dac4a3d78cc3376a60279b72fd555a4b727dcf2 /drivers/staging/android
parentstaging/csr: Fix dereference before check (diff)
downloadkernel-qcow2-linux-0f5afdd2389d983d38030ff95d2a07373a5550fc.tar.gz
kernel-qcow2-linux-0f5afdd2389d983d38030ff95d2a07373a5550fc.tar.xz
kernel-qcow2-linux-0f5afdd2389d983d38030ff95d2a07373a5550fc.zip
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/android')
-rw-r--r--drivers/staging/android/binder.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/android/binder.h b/drivers/staging/android/binder.h
index 2f7d195d8b15..76ead8dac265 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),
/*