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 zephyr: replace zephyr integer types with C99 types 2020-06-08 08:23:57 -05:00
nvs drivers: flash: Pass bool to flash_write_protection_set() 2020-10-02 12:06:28 -04:00
CMakeLists.txt fs: remove NFFS subsystem 2020-01-21 15:32:47 +01:00
fat_fs.c fs: make file system description const 2020-09-03 21:49:34 +02:00
fs.c fs: allow external file system implementations 2020-09-03 21:49:34 +02:00
fs_impl.c subsys/fs: add implementation helper module 2019-07-22 12:46:50 +02:00
fs_impl.h include: Fix use of <fs.h> -> <fs/fs.h> 2019-12-10 08:39:37 -05:00
fuse_fs_access.c native_posix: Add flags argument to fs_open invocations 2020-07-30 16:33:18 +02:00
Kconfig fs: allow setting max file name explicitly 2020-09-03 21:49:34 +02:00
Kconfig.littlefs global: Remove leading/trailing blank lines in files 2019-12-11 19:17:27 +01:00
littlefs_fs.c fs: make file system description const 2020-09-03 21:49:34 +02:00
shell.c subsys/fs: Add open flags parameter to fs_open 2020-07-30 16:33:18 +02:00