flash/nor/sh_qspi: Use 'bool' data type
authorMarc Schink <dev@zapb.de>
Wed, 1 Jul 2020 08:26:32 +0000 (10:26 +0200)
committerAntonio Borneo <borneo.antonio@gmail.com>
Wed, 8 Jul 2020 21:06:40 +0000 (22:06 +0100)
Change-Id: Id5567102013648b1565078310abc27bee4446992
Signed-off-by: Marc Schink <dev@zapb.de>
Reviewed-on: http://openocd.zylin.com/5748
Tested-by: jenkins
Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com>
src/flash/nor/sh_qspi.c

index e6c9be4b48122206eedf62bd191e134ca8bdc98b..1ba9753392e691772e09e1bbdcadeacf57c0b9bb 100644 (file)
@@ -77,7 +77,7 @@
 struct sh_qspi_flash_bank {
        const struct flash_device *dev;
        uint32_t                io_base;
-       int                     probed;
+       bool                    probed;
        struct working_area     *io_algorithm;
        struct working_area     *source;
        unsigned int            buffer_size;
@@ -755,7 +755,7 @@ static int sh_qspi_probe(struct flash_bank *bank)
        if (info->probed)
                free(bank->sectors);
 
-       info->probed = 0;
+       info->probed = false;
 
        for (target_device = target_devices; target_device->name;
                ++target_device)
@@ -825,7 +825,7 @@ static int sh_qspi_probe(struct flash_bank *bank)
        }
 
        bank->sectors = sectors;
-       info->probed = 1;
+       info->probed = true;
        return ERROR_OK;
 }