Skip to content

Commit

Permalink
staging: davinci_vpfe: fix space prohibited before semicolon warning
Browse files Browse the repository at this point in the history
This patch fixes the following checkpatch.pl warning:

space prohibited before semicolon

Signed-off-by: Aya Mahfouz <mahfouz.saif.elyazal@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Aya Mahfouz authored and Greg Kroah-Hartman committed Jan 18, 2015
1 parent 1703ca9 commit 0cba55b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/media/davinci_vpfe/dm365_ipipe.c
Original file line number Diff line number Diff line change
Expand Up @@ -901,7 +901,7 @@ static int ipipe_set_gbce_params(struct vpfe_ipipe_device *ipipe, void *param)
struct device *dev = ipipe->subdev.v4l2_dev->dev;

if (!gbce_param) {
memset(gbce, 0 , sizeof(struct vpfe_ipipe_gbce));
memset(gbce, 0, sizeof(struct vpfe_ipipe_gbce));
} else {
memcpy(gbce, gbce_param, sizeof(struct vpfe_ipipe_gbce));
if (ipipe_validate_gbce_params(gbce) < 0) {
Expand Down Expand Up @@ -1086,7 +1086,7 @@ static int ipipe_set_car_params(struct vpfe_ipipe_device *ipipe, void *param)
struct vpfe_ipipe_car *car = &ipipe->config.car;

if (!car_param) {
memset(car , 0, sizeof(struct vpfe_ipipe_car));
memset(car, 0, sizeof(struct vpfe_ipipe_car));
} else {
memcpy(car, car_param, sizeof(struct vpfe_ipipe_car));
if (ipipe_validate_car_params(car) < 0) {
Expand Down

0 comments on commit 0cba55b

Please sign in to comment.