9
0
Fork 0
barebox/include/usb/usbserial.h

12 lines
207 B
C

#ifndef _USB_SERIAL_H
#define _USB_SERIAL_H
struct usb_serial_pdata {
bool acm;
};
int usb_serial_register(struct usb_serial_pdata *pdata);
void usb_serial_unregister(void);
#endif /* _USB_SERIAL_H */