zephyr/drivers/rtc
Leandro Pereira 732424f065 drivers, net: Clean up semaphore initialization
Change the common "init with 0" + "give" idiom to "init with 1".  This
won't change the behavior or performance, but should decrease the size
ever so slightly.

This change has been performed mechanically with the following
Coccinelle script:

    @@
    expression SEM;
    expression LIMIT;
    expression TIMEOUT;
    @@

    - k_sem_init(SEM, 0, LIMIT);
    - k_sem_give(SEM);
    + k_sem_init(SEM, 1, LIMIT);

Signed-off-by: Leandro Pereira <leandro.pereira@intel.com>
2017-07-27 15:23:07 -04:00
..
Kconfig rts: Kconfig: Add QMSI dependency on RTC options 2017-06-15 16:14:59 -05:00
Makefile rtc qmsi: Enable the driver to work on ARC 2016-11-02 22:24:28 +00:00
rtc_qmsi.c drivers, net: Clean up semaphore initialization 2017-07-27 15:23:07 -04:00