zephyr/subsys/fs
Ievgenii Meshcheriakov cf523e449e drivers: flash: Pass bool to flash_write_protection_set()
The second argument of this foonction is a bool, so passing 0 and 1
is incorrect.

Coccinelle script:

    @@
    expression e;
    @@
    flash_write_protection_set(e,
    (
    - 0
    + false
    |
    - 1
    + true
    )
     )

Signed-off-by: Ievgenii Meshcheriakov <ievgenii.meshcheriakov@nordicsemi.no>
2020-10-02 12:06:28 -04:00
..
fcb
nvs drivers: flash: Pass bool to flash_write_protection_set() 2020-10-02 12:06:28 -04:00
CMakeLists.txt
fat_fs.c
fs_impl.c
fs_impl.h
fs.c fs: allow external file system implementations 2020-09-03 21:49:34 +02:00
fuse_fs_access.c
Kconfig fs: allow setting max file name explicitly 2020-09-03 21:49:34 +02:00
Kconfig.littlefs
littlefs_fs.c
shell.c