From: Nicholas Mc Guire Date: Mon, 13 Feb 2017 08:13:56 +0000 (+0100) Subject: mtd: spi-nor: intel: use true/false for boolean X-Git-Tag: v4.12-rc1~24^2~5^2~10 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=22d61878565916a0f0ff4babe9207365d0dc8bd6;p=karo-tx-linux.git mtd: spi-nor: intel: use true/false for boolean writeable in struct intel_spi is a boolean and assignment should be to true/false not 1/0 as recommended by boolinit.cocci. Signed-off-by: Nicholas Mc Guire Acked-by: Marek Vasut Acked-by: Mika Westerberg Signed-off-by: Cyrille Pitchen --- diff --git a/drivers/mtd/spi-nor/intel-spi.c b/drivers/mtd/spi-nor/intel-spi.c index a10f6027b386..e43ce63881a6 100644 --- a/drivers/mtd/spi-nor/intel-spi.c +++ b/drivers/mtd/spi-nor/intel-spi.c @@ -704,7 +704,7 @@ static void intel_spi_fill_partition(struct intel_spi *ispi, * whole partition read-only to be on the safe side. */ if (intel_spi_is_protected(ispi, base, limit)) - ispi->writeable = 0; + ispi->writeable = false; end = (limit << 12) + 4096; if (end > part->size)