Skip to content

Commit 2aa26ad

Browse files
tmon-nordickartben
authored andcommitted
drivers: udc_dwc2: Optimize endpoint event clear
There is no point in calling k_event_test() to determine what events are posted and then passing that value to k_event_clear(). Simply pass UINT32_MAX to k_event_clear() and use the return value to slightly reduce overhead. Signed-off-by: Tomasz Moń <tomasz.mon@nordicsemi.no>
1 parent 2395452 commit 2aa26ad

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

drivers/usb/udc/udc_dwc2.c

+2-4
Original file line numberDiff line numberDiff line change
@@ -3026,8 +3026,7 @@ static ALWAYS_INLINE void dwc2_thread_handler(void *const arg)
30263026

30273027
if (!priv->hibernated) {
30283028
LOG_DBG("New transfer(s) in the queue");
3029-
eps = k_event_test(&priv->xfer_new, UINT32_MAX);
3030-
k_event_clear(&priv->xfer_new, eps);
3029+
eps = k_event_clear(&priv->xfer_new, UINT32_MAX);
30313030
} else {
30323031
/* Events will be handled after hibernation exit */
30333032
eps = 0;
@@ -3049,8 +3048,7 @@ static ALWAYS_INLINE void dwc2_thread_handler(void *const arg)
30493048
k_event_clear(&priv->drv_evt, BIT(DWC2_DRV_EVT_EP_FINISHED));
30503049

30513050
if (!priv->hibernated) {
3052-
eps = k_event_test(&priv->xfer_finished, UINT32_MAX);
3053-
k_event_clear(&priv->xfer_finished, eps);
3051+
eps = k_event_clear(&priv->xfer_finished, UINT32_MAX);
30543052
} else {
30553053
/* Events will be handled after hibernation exit */
30563054
eps = 0;

0 commit comments

Comments
 (0)