From: Gargi Sharma Date: Sun, 19 Feb 2017 19:14:18 +0000 (+0530) Subject: staging: media: Remove ternary operator X-Git-Tag: v4.12-rc1~84^2~897 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=0743a78fde7cc561ad53b657be693e7f9981a73a;p=linux.git staging: media: Remove ternary operator Relational and logical operators evaluate to either true or false. Explicit conversion is not needed so remove the ternary operator. Done using coccinelle: @r@ expression A,B; symbol true,false; binary operator b = {==,!=,&&,||,>=,<=,>,<}; @@ - (A b B) ? true : false + A b B Signed-off-by: Gargi Sharma Acked-by: Julia Lawall Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/media/platform/bcm2835/controls.c b/drivers/staging/media/platform/bcm2835/controls.c index a40987b2e75d..4d7e2a2976c2 100644 --- a/drivers/staging/media/platform/bcm2835/controls.c +++ b/drivers/staging/media/platform/bcm2835/controls.c @@ -218,9 +218,7 @@ static int ctrl_set_iso(struct bm2835_mmal_dev *dev, dev->iso = iso_values[ctrl->val]; else if (ctrl->id == V4L2_CID_ISO_SENSITIVITY_AUTO) dev->manual_iso_enabled = - (ctrl->val == V4L2_ISO_SENSITIVITY_MANUAL ? - true : - false); + (ctrl->val == V4L2_ISO_SENSITIVITY_MANUAL); control = &dev->component[MMAL_COMPONENT_CAMERA]->control;