zephyr/subsys
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
..
bluetooth Bluetooth: host: Change PA sync callbacks to global callbacks 2020-10-02 11:49:13 +02:00
canbus
console
cpp
debug
dfu misc: Replace assert include and calls by sys/__assert.h equivalent 2020-10-02 11:42:40 +02:00
disk misc: Replace assert include and calls by sys/__assert.h equivalent 2020-10-02 11:42:40 +02:00
emul
fb
fs drivers: flash: Pass bool to flash_write_protection_set() 2020-10-02 12:06:28 -04:00
jwt
logging misc: Replace assert include and calls by sys/__assert.h equivalent 2020-10-02 11:42:40 +02:00
mgmt misc: Replace assert include and calls by sys/__assert.h equivalent 2020-10-02 11:42:40 +02:00
net net: tc: Remove not used field from net_traffic_class struct 2020-10-02 13:20:17 +03:00
power
random random: Warning when using test config 2020-10-02 11:30:03 +02:00
settings misc: Replace assert include and calls by sys/__assert.h equivalent 2020-10-02 11:42:40 +02:00
shell shell: enhance help command 2020-10-02 12:05:49 -04:00
stats misc: Replace assert include and calls by sys/__assert.h equivalent 2020-10-02 11:42:40 +02:00
storage storage: flash_map: Unify partition processing macros name 2020-09-21 16:42:29 -05:00
testsuite
timing
tracing tracing: handle null thread names with systemview 2020-09-20 21:27:55 -04:00
usb code-guideline: Fixing code violation 10.4 Rule 2020-10-01 17:13:29 -04:00
CMakeLists.txt
Kconfig