Skip to content

Commit e813756

Browse files
committed
drivers: usb: move common driver headers to include
Let's organize the common USB driver headers in include. Signed-off-by: Johann Fischer <johann.fischer@nordicsemi.no>
1 parent f81c643 commit e813756

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

drivers/usb/device/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
if(CONFIG_USB_DEVICE_DRIVER)
44

55
zephyr_library()
6-
zephyr_library_include_directories(${ZEPHYR_BASE}/drivers/usb/common/)
6+
zephyr_library_include_directories(${ZEPHYR_BASE}/drivers/usb/common/include)
77

88
zephyr_library_sources_ifdef(CONFIG_USB_DW usb_dc_dw.c)
99
zephyr_library_sources_ifdef(CONFIG_USB_DC_RPI_PICO usb_dc_rpi_pico.c)

drivers/usb/udc/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
zephyr_library()
55

66
zephyr_library_sources(udc_common.c)
7-
zephyr_library_include_directories(${ZEPHYR_BASE}/drivers/usb/common/)
7+
zephyr_library_include_directories(${ZEPHYR_BASE}/drivers/usb/common/include)
88

99
zephyr_library_sources_ifdef(CONFIG_UDC_DWC2 udc_dwc2.c)
1010
zephyr_library_sources_ifdef(CONFIG_UDC_NRF udc_nrf.c)

0 commit comments

Comments
 (0)