zephyr/drivers/counter
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 counter: cmsdk: Add DualTimer as Counter 2017-01-23 15:15:54 -06:00
Kconfig.dtmr_cmsdk_apb counter: cmsdk: Add Dualtimer as a Timer 2017-01-23 15:15:54 -06:00
Kconfig.qmsi license: Replace Apache boilerplate with SPDX tag 2017-01-19 03:50:58 +00:00
Kconfig.tmr_cmsdk_apb counter: cmsdk: Add Timer 0 and 1 as Timers 2017-01-23 15:15:54 -06:00
Makefile counter: cmsdk: Add Dualtimer as a Timer 2017-01-23 15:15:54 -06:00
counter_dtmr_cmsdk_apb.c drivers: convert to using newly introduced integer sized types 2017-04-21 10:06:48 -05:00
counter_qmsi_aon.c drivers: convert to using newly introduced integer sized types 2017-04-21 10:06:48 -05:00
counter_qmsi_aonpt.c drivers, net: Clean up semaphore initialization 2017-07-27 15:23:07 -04:00
counter_tmr_cmsdk_apb.c drivers: convert to using newly introduced integer sized types 2017-04-21 10:06:48 -05:00
dualtimer_cmsdk_apb.h drivers: convert to using newly introduced integer sized types 2017-04-21 10:06:48 -05:00
timer_cmsdk_apb.h drivers: convert to using newly introduced integer sized types 2017-04-21 10:06:48 -05:00
timer_dtmr_cmsdk_apb.c drivers: convert to using newly introduced integer sized types 2017-04-21 10:06:48 -05:00
timer_tmr_cmsdk_apb.c drivers: convert to using newly introduced integer sized types 2017-04-21 10:06:48 -05:00