diff options
author | Mandel Benjamin <benyx.mandel@gmail.com> | 2017-02-15 06:46:16 +0900 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-02-16 10:44:59 -0800 |
commit | 0a441275018b69deffd35bc22a84fd51c54d7d85 (patch) | |
tree | bf3b7838d6b834aba82ea249978fa304632f50c7 /drivers | |
parent | 6b0d6284d9486102350a72418e38e5cfb0055477 (diff) |
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')
-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 |