zephyr/subsys/usb/device/class
Roman Studenikin 260fc89643 drivers: use DT_INST_PROP over DT_INST_PROP_OR if possible
It might happens that DT(_INST)_PROP_OR is used with boolean properties.
For instance:

	.single_wire = DT_INST_PROP_OR(index, single_wire, false),	\
	.tx_rx_swap = DT_INST_PROP_OR(index, tx_rx_swap, false),	\

This is not required as boolean properties are generated with false
value when not present, so the _OR macro extension is superflous
and the above code can be replaced by:

	.single_wire = DT_INST_PROP(index, single_wire),		\
	.tx_rx_swap = DT_INST_PROP(index, tx_rx_swap),			\

Signed-off-by: Roman Studenikin <srv@meta.com>
2024-01-30 00:26:58 +00:00
..
audio usb: device: audio: fix compiler warning for usb audio microphone 2024-01-10 15:08:06 +01:00
dfu subsys/usb: move to timepoint API 2023-07-25 09:12:26 +02:00
hid usb: device: hid: remove CONFIG_USB_HID_PROTOCOL_CODE 2023-09-05 16:16:56 +02:00
netusb usb: fix thread function signatures 2023-10-30 12:24:34 +01:00
bluetooth.c usb: fix thread function signatures 2023-10-30 12:24:34 +01:00
bt_h4.c usb: fix thread function signatures 2023-10-30 12:24:34 +01:00
cdc_acm.c drivers: use DT_INST_PROP over DT_INST_PROP_OR if possible 2024-01-30 00:26:58 +00:00
CMakeLists.txt
Kconfig
Kconfig.bt
Kconfig.cdc usb: device: cdc_acm: Use ZLP to detect initial host read 2023-11-13 09:43:46 +01:00
Kconfig.msc
Kconfig.template.composite_device_number
Kconfig.test
loopback.c
msc.c usb: fix thread function signatures 2023-10-30 12:24:34 +01:00