Instead of using 0 or 1 for boolean, use the true/false
defines.
Also, instead of testing foo == false, just use the
simplified notation if(!foo).
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
        if (ret != 1)
                goto err;
 
-       priv->i2c_gate_state = 0;
+       priv->i2c_gate_state = false;
 
        return;
 err:
 
        s->pixelformat = formats[0].pixelformat;
        s->buffersize = formats[0].buffersize;
        s->num_formats = NUM_FORMATS;
-       if (rtl2832_sdr_emulated_fmt == false)
+       if (!rtl2832_sdr_emulated_fmt)
                s->num_formats -= 1;
 
        mutex_init(&s->v4l2_lock);