License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-block.git] / include / linux / usb / atmel_usba_udc.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * Platform data definitions for Atmel USBA gadget driver.
4  */
5 #ifndef __LINUX_USB_USBA_H
6 #define __LINUX_USB_USBA_H
7
8 struct usba_ep_data {
9         char    *name;
10         int     index;
11         int     fifo_size;
12         int     nr_banks;
13         int     can_dma;
14         int     can_isoc;
15 };
16
17 struct usba_platform_data {
18         int                     vbus_pin;
19         int                     vbus_pin_inverted;
20         int                     num_ep;
21         struct usba_ep_data     ep[0];
22 };
23
24 #endif /* __LINUX_USB_USBA_H */