staging: media: atomisp: i2c: removed unnecessary white space before comma in memset()

Removed extra space before comma in memset() as a part of
checkpatch.pl fix-up.

Signed-off-by: Valerio Genovese <valerio.click@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Valerio Genovese 2017-04-02 21:43:46 +02:00 committed by Greg Kroah-Hartman
parent 8d7cd91da4
commit 33a2e390c4
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ static int gc0310_read_reg(struct i2c_client *client,
return -EINVAL;
}
memset(msg, 0 , sizeof(msg));
memset(msg, 0, sizeof(msg));
msg[0].addr = client->addr;
msg[0].flags = 0;