diff options
| author | Haavard Skinnemoen <haavard.skinnemoen@atmel.com> | 2008-04-19 20:38:41 -0400 |
|---|---|---|
| committer | Haavard Skinnemoen <haavard.skinnemoen@atmel.com> | 2008-04-19 20:38:41 -0400 |
| commit | e1c25dc638db01600069b3f9167d1b35f8d574b5 (patch) | |
| tree | f3b25d6a8344f0d9b7d23c8447d4078a36bb30fd /include/linux | |
| parent | 03414e57ad9875d0c8bfa5a4a65813cb2157372e (diff) | |
| parent | 16a45bc82e61891daec1ffcd057679bdf962aeb8 (diff) | |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/hskinnemoen/usba-2.6.26 into base
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/usb/atmel_usba_udc.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/include/linux/usb/atmel_usba_udc.h b/include/linux/usb/atmel_usba_udc.h new file mode 100644 index 0000000000..6311fa2d9f --- /dev/null +++ b/include/linux/usb/atmel_usba_udc.h | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | /* | ||
| 2 | * Platform data definitions for Atmel USBA gadget driver. | ||
| 3 | */ | ||
| 4 | #ifndef __LINUX_USB_USBA_H | ||
| 5 | #define __LINUX_USB_USBA_H | ||
| 6 | |||
| 7 | struct usba_ep_data { | ||
| 8 | char *name; | ||
| 9 | int index; | ||
| 10 | int fifo_size; | ||
| 11 | int nr_banks; | ||
| 12 | int can_dma; | ||
| 13 | int can_isoc; | ||
| 14 | }; | ||
| 15 | |||
| 16 | struct usba_platform_data { | ||
| 17 | int vbus_pin; | ||
| 18 | int num_ep; | ||
| 19 | struct usba_ep_data ep[0]; | ||
| 20 | }; | ||
| 21 | |||
| 22 | #endif /* __LINUX_USB_USBA_H */ | ||
