diff options
author | Mandel Benjamin <benyx.mandel@gmail.com> | 2017-02-14 22:46:16 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-02-16 19:44:59 +0100 |
commit | 0a441275018b69deffd35bc22a84fd51c54d7d85 (patch) | |
tree | bf3b7838d6b834aba82ea249978fa304632f50c7 /drivers/staging | |
parent | Staging: vc04_services: Fix the "wrong indent" code style errors (diff) | |
download | linux-0a441275018b69deffd35bc22a84fd51c54d7d85.tar.xz linux-0a441275018b69deffd35bc22a84fd51c54d7d85.zip |
Staging: vc04_services: Fix the "space prohibited" code style errors
Fixes the following code style errors:
ERROR: space prohibited after/before that open/closed parenthesis
Signed-off-by: Mandel Benjamin <benyx.mandel@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-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 cedb24ec64b1..45c2070d46b0 100644 --- a/drivers/staging/vc04_services/interface/vchi/vchi_common.h +++ b/drivers/staging/vc04_services/interface/vchi/vchi_common.h @@ -120,9 +120,9 @@ typedef enum { //Callback used by all services / bulk transfers -typedef void (*VCHI_CALLBACK_T)( void *callback_param, //my service local param +typedef void (*VCHI_CALLBACK_T)(void *callback_param, //my service local param VCHI_CALLBACK_REASON_T reason, - void *handle ); //for transmitting msg's only + void *handle); //for transmitting msg's only |