On Tue, Dec 16, 2014 at 11:11 AM, Roberta Dobrescu <roberta.dobrescu@xxxxxxxxx> wrote: > This patch fixes the following checkpatch.pl warning: > WARNING: braces {} are not necessary for single statement blocks > > Signed-off-by: Roberta Dobrescu <roberta.dobrescu@xxxxxxxxx> Reviewed-by: Daniel Baluta <daniel.baluta@xxxxxxxxx> > --- > drivers/iio/frequency/adf4350.c | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/drivers/iio/frequency/adf4350.c b/drivers/iio/frequency/adf4350.c > index 2b301eb..10a0dfc 100644 > --- a/drivers/iio/frequency/adf4350.c > +++ b/drivers/iio/frequency/adf4350.c > @@ -611,9 +611,8 @@ static int adf4350_remove(struct spi_device *spi) > if (st->clk) > clk_disable_unprepare(st->clk); > > - if (!IS_ERR(reg)) { > + if (!IS_ERR(reg)) > regulator_disable(reg); > - } > > return 0; > } > -- > 1.9.1 > > -- > To unsubscribe from this list: send the line "unsubscribe linux-iio" in > the body of a message to majordomo@xxxxxxxxxxxxxxx > More majordomo info at http://vger.kernel.org/majordomo-info.html -- To unsubscribe from this list: send the line "unsubscribe linux-iio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html