diff options
author | Vatika Harlalka <vatikaharlalka@gmail.com> | 2015-02-19 00:22:24 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-02-26 12:23:58 -0800 |
commit | 9e95ff88fe26fdbdce5679339b87641ec43175cf (patch) | |
tree | 22bc09a75b2357e5ee0b7c469d4e8928dd179e1f /drivers/staging/i2o | |
parent | e267cc5e48fbc1acba6f0b0dd7e6871f2733a8fc (diff) | |
download | talos-op-linux-9e95ff88fe26fdbdce5679339b87641ec43175cf.tar.gz talos-op-linux-9e95ff88fe26fdbdce5679339b87641ec43175cf.zip |
Staging: i2o: Remove space after the * in a pointer type variable
This patch is to remove space after the * in pointer type function parameters
in function prototype and definition to follow kernel coding conventions.
Signed-off-by: Vatika Harlalka <vatikaharlalka@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/i2o')
-rw-r--r-- | drivers/staging/i2o/debug.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/i2o/debug.c b/drivers/staging/i2o/debug.c index 6a760db0565c..73123ca6b9a1 100644 --- a/drivers/staging/i2o/debug.c +++ b/drivers/staging/i2o/debug.c @@ -5,7 +5,7 @@ static void i2o_report_util_cmd(u8 cmd); static void i2o_report_exec_cmd(u8 cmd); -static void i2o_report_fail_status(u8 req_status, u32 * msg); +static void i2o_report_fail_status(u8 req_status, u32 *msg); static void i2o_report_common_status(u8 req_status); static void i2o_report_common_dsc(u16 detailed_status); @@ -66,7 +66,7 @@ void i2o_dump_message(struct i2o_message *m) * Following fail status are common to all classes. * The preserved message must be handled in the reply handler. */ -static void i2o_report_fail_status(u8 req_status, u32 * msg) +static void i2o_report_fail_status(u8 req_status, u32 *msg) { static char *FAIL_STATUS[] = { "0x80", /* not used */ |