diff options
author | Mandel Benjamin <benyx.mandel@gmail.com> | 2017-02-15 06:39:52 +0900 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-02-16 10:44:59 -0800 |
commit | 6b0d6284d9486102350a72418e38e5cfb0055477 (patch) | |
tree | 88b2be2c119c20ff0cf45f12fe2d327639137829 | |
parent | 66812da3a689e3fea8a2e3899dd8b5f53aab2261 (diff) | |
download | linux-stable-6b0d6284d9486102350a72418e38e5cfb0055477.tar.gz linux-stable-6b0d6284d9486102350a72418e38e5cfb0055477.tar.bz2 linux-stable-6b0d6284d9486102350a72418e38e5cfb0055477.zip |
Staging: vc04_services: Fix the "wrong indent" code style errors
Fixes the following code style errors:
ERROR: code indent should use tabs where possible
Signed-off-by: Mandel Benjamin <benyx.mandel@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/vc04_services/interface/vchi/vchi_common.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/vc04_services/interface/vchi/vchi_common.h b/drivers/staging/vc04_services/interface/vchi/vchi_common.h index 3f7d8438fe09..cedb24ec64b1 100644 --- a/drivers/staging/vc04_services/interface/vchi/vchi_common.h +++ b/drivers/staging/vc04_services/interface/vchi/vchi_common.h @@ -121,8 +121,8 @@ typedef enum { //Callback used by all services / bulk transfers typedef void (*VCHI_CALLBACK_T)( void *callback_param, //my service local param - VCHI_CALLBACK_REASON_T reason, - void *handle ); //for transmitting msg's only + VCHI_CALLBACK_REASON_T reason, + void *handle ); //for transmitting msg's only |