-
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: 164971 b: refs/heads/master c: 9da69c6 h: refs/heads/master i: 164969: 9359d4f 164967: a1d80ba v: v3
- Loading branch information
Michael Hennerich
authored and
Greg Kroah-Hartman
committed
Sep 23, 2009
1 parent
0c35726
commit 477f5d9
Showing
5 changed files
with
45 additions
and
2 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: 331ac6b288d9f3689514ced1878041fb0df7e13c | ||
refs/heads/master: 9da69c604d87afea37b5411867bb76e3c624cc92 |
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,18 @@ | ||
/* | ||
* board initialization should put one of these into dev->platform_data | ||
* and place the isp1760 onto platform_bus named "isp1760-hcd". | ||
*/ | ||
|
||
#ifndef __LINUX_USB_ISP1760_H | ||
#define __LINUX_USB_ISP1760_H | ||
|
||
struct isp1760_platform_data { | ||
unsigned is_isp1761:1; /* Chip is ISP1761 */ | ||
unsigned bus_width_16:1; /* 16/32-bit data bus width */ | ||
unsigned port1_otg:1; /* Port 1 supports OTG */ | ||
unsigned analog_oc:1; /* Analog overcurrent */ | ||
unsigned dack_polarity_high:1; /* DACK active high */ | ||
unsigned dreq_polarity_high:1; /* DREQ active high */ | ||
}; | ||
|
||
#endif /* __LINUX_USB_ISP1760_H */ |