summaryrefslogtreecommitdiffstats
path: root/include/usb/usbserial.h
blob: e1375c489a027448c8e75ce1ce051c279650bcc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* SPDX-License-Identifier: GPL-2.0-only */

#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 */