-
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: 121860 b: refs/heads/master c: f004f3e h: refs/heads/master v: v3
- Loading branch information
Paulius Zaleckas
authored and
David S. Miller
committed
Nov 17, 2008
1 parent
4400d7c
commit d6ea8d1
Showing
4 changed files
with
192 additions
and
72 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: 72af187f216ed83c77ca3e6f22dfc9caf72e9347 | ||
refs/heads/master: f004f3ea34209d8b836426b26ade3dc502631b18 |
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,25 @@ | ||
/* | ||
* MDIO-GPIO bus platform data structures | ||
* | ||
* Copyright (C) 2008, Paulius Zaleckas <paulius.zaleckas@teltonika.lt> | ||
* | ||
* This file is licensed under the terms of the GNU General Public License | ||
* version 2. This program is licensed "as is" without any warranty of any | ||
* kind, whether express or implied. | ||
*/ | ||
|
||
#ifndef __LINUX_MDIO_GPIO_H | ||
#define __LINUX_MDIO_GPIO_H | ||
|
||
#include <linux/mdio-bitbang.h> | ||
|
||
struct mdio_gpio_platform_data { | ||
/* GPIO numbers for bus pins */ | ||
unsigned int mdc; | ||
unsigned int mdio; | ||
|
||
unsigned int phy_mask; | ||
int irqs[PHY_MAX_ADDR]; | ||
}; | ||
|
||
#endif /* __LINUX_MDIO_GPIO_H */ |