Release 4.17 include/linux/usb/atmel_usba_udc.h
/* SPDX-License-Identifier: GPL-2.0 */
/*
* Platform data definitions for Atmel USBA gadget driver.
*/
#ifndef __LINUX_USB_USBA_H
#define __LINUX_USB_USBA_H
struct usba_ep_data {
char *name;
int index;
int fifo_size;
int nr_banks;
int can_dma;
int can_isoc;
};
struct usba_platform_data {
int vbus_pin;
int vbus_pin_inverted;
int num_ep;
struct usba_ep_data ep[0];
};
#endif /* __LINUX_USB_USBA_H */
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Stelian Pop | 52 | 92.86% | 1 | 33.33% |
Eirik Aanonsen | 3 | 5.36% | 1 | 33.33% |
Greg Kroah-Hartman | 1 | 1.79% | 1 | 33.33% |
Total | 56 | 100.00% | 3 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.