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 <der.herr@hofr.at>
Acked-by: Marek Vasut <marek.vasut@gmail.com>
Acked-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: Cyrille Pitchen <cyrille.pitchen@atmel.com>
This commit is contained in:
Nicholas Mc Guire 2017-02-13 09:13:56 +01:00 committed by Cyrille Pitchen
parent 0a5165a83c
commit 22d6187856
1 changed files with 1 additions and 1 deletions

View File

@ -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)