mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-12-13 07:52:27 +00:00
12 lines
149 B
C
12 lines
149 B
C
|
/* SPDX-License-Identifier: MIT */
|
||
|
|
||
|
#ifndef USB_H
|
||
|
#define USB_H
|
||
|
|
||
|
#include "types.h"
|
||
|
#include "usb_dwc3.h"
|
||
|
|
||
|
dwc3_dev_t *usb_bringup(u32 idx);
|
||
|
|
||
|
#endif
|