1 /*
2  * Copyright (c) 2022 Nordic Semiconductor ASA
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef ZEPHYR_INCLUDE_USBH_INTERNAL_H
8 #define ZEPHYR_INCLUDE_USBH_INTERNAL_H
9 
10 #include <stdint.h>
11 #include <zephyr/usb/usbh.h>
12 
13 int usbh_init_device_intl(struct usbh_contex *const uhs_ctx);
14 
15 #endif /* ZEPHYR_INCLUDE_USBH_INTERNAL_H */
16