-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 91347 b: refs/heads/master c: 8d85531 h: refs/heads/master i: 91345: 694bdf9 91343: fe75d15 v: v3
- Loading branch information
Stelian Pop
authored and
Haavard Skinnemoen
committed
Apr 6, 2008
1 parent
2dc88b7
commit 3408524
Showing
5 changed files
with
106 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 8d12c32c19a2719f6a96a23e94d95699c47e55d0 | ||
refs/heads/master: 8d855317fcf7fd9bd900d1e5ef1bea1b14bbe6af |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/* | ||
* 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 num_ep; | ||
struct usba_ep_data ep[0]; | ||
}; | ||
|
||
#endif /* __LINUX_USB_USBA_H */ |