mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-12-11 15:12:29 +00:00
de6979fc7b
This is no longer needed, so put things back the way they were.
This reverts commit e689ceb263
.
Signed-off-by: Hector Martin <marcan@marcan.st>
18 lines
333 B
C
18 lines
333 B
C
/* SPDX-License-Identifier: MIT */
|
|
|
|
#ifndef USB_H
|
|
#define USB_H
|
|
|
|
#include "iodev.h"
|
|
#include "types.h"
|
|
#include "usb_dwc3.h"
|
|
|
|
dwc3_dev_t *usb_bringup(u32 idx);
|
|
|
|
void usb_init(void);
|
|
void usb_hpm_restore_irqs(bool force);
|
|
void usb_iodev_init(void);
|
|
void usb_iodev_shutdown(void);
|
|
void usb_iodev_vuart_setup(iodev_id_t iodev);
|
|
|
|
#endif
|