Skip to content

Commit 2e09426

Browse files
committed
[nrf fromtree] usb: device_next: uac2: Remove unnecessary plus signs
Change the macros to have only one plus operator per term. This is purely stylistic change, no functional changes. Signed-off-by: Tomasz Moń <[email protected]> (cherry picked from commit 673f324)
1 parent 0f01a76 commit 2e09426

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

subsys/usb/device_next/class/usbd_uac2.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ LOG_MODULE_REGISTER(usbd_uac2, CONFIG_USBD_UAC2_LOG_LEVEL);
2626

2727
#define COUNT_UAC2_AS_ENDPOINT_BUFFERS(node) \
2828
IF_ENABLED(DT_NODE_HAS_COMPAT(node, zephyr_uac2_audio_streaming), ( \
29-
+ AS_HAS_ISOCHRONOUS_DATA_ENDPOINT(node) + \
30-
+ AS_IS_USB_ISO_IN(node) /* ISO IN double buffering */ + \
31-
AS_HAS_EXPLICIT_FEEDBACK_ENDPOINT(node)))
29+
+ AS_HAS_ISOCHRONOUS_DATA_ENDPOINT(node) \
30+
+ AS_IS_USB_ISO_IN(node) /* ISO IN double buffering */ \
31+
+ AS_HAS_EXPLICIT_FEEDBACK_ENDPOINT(node)))
3232
#define COUNT_UAC2_EP_BUFFERS(i) \
3333
+ DT_PROP(DT_DRV_INST(i), interrupt_endpoint) \
3434
DT_INST_FOREACH_CHILD(i, COUNT_UAC2_AS_ENDPOINT_BUFFERS)

0 commit comments

Comments
 (0)