-
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: 182039 b: refs/heads/master c: 66f75cc h: refs/heads/master i: 182037: 32f2dac 182035: 723a42a 182031: 37433f1 v: v3
- Loading branch information
Florian Fainelli
authored and
Ralf Baechle
committed
Feb 27, 2010
1 parent
4a9f32a
commit d8033ae
Showing
4 changed files
with
125 additions
and
1 deletion.
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: cf6e47e03239059bcf2942b1b3242e835231ab75 | ||
refs/heads/master: 66f75ccb856304c190fde9c26e651c2b754e3e72 |
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,17 @@ | ||
#ifndef __AU1X00_ETH_DATA_H | ||
#define __AU1X00_ETH_DATA_H | ||
|
||
/* Platform specific PHY configuration passed to the MAC driver */ | ||
struct au1000_eth_platform_data { | ||
int phy_static_config; | ||
int phy_search_highest_addr; | ||
int phy1_search_mac0; | ||
int phy_addr; | ||
int phy_busid; | ||
int phy_irq; | ||
}; | ||
|
||
void __init au1xxx_override_eth_cfg(unsigned port, | ||
struct au1000_eth_platform_data *eth_data); | ||
|
||
#endif /* __AU1X00_ETH_DATA_H */ |