diff options
author | Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> | 2009-08-27 19:25:03 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-08-29 03:19:35 -0400 |
commit | 4923576b8ac5bfd36ab2beb176aeb747aaab7e41 (patch) | |
tree | c58e0194bf64bd60e1bd01bf4c474a8cb1bc1284 /drivers/net/sh_eth.h | |
parent | 2db9517ef3dd48790c02a531e2b0db1957afd891 (diff) |
net: sh_eth: add value of ether_link pin in platform_data
The method of ETHER_LINK pin is board dependence.
This patch adding paramters are:
- no_ether_link : If set to 1, do not use ETHER_LINK
- ether_link_active_low : If set to 1, ETHER_LINK is active low.
Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/sh_eth.h')
-rw-r--r-- | drivers/net/sh_eth.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/sh_eth.h b/drivers/net/sh_eth.h index 9afe5b4c855d..ba151f86ae7b 100644 --- a/drivers/net/sh_eth.h +++ b/drivers/net/sh_eth.h | |||
@@ -729,6 +729,9 @@ struct sh_eth_private { | |||
729 | char post_rx; /* POST receive */ | 729 | char post_rx; /* POST receive */ |
730 | char post_fw; /* POST forward */ | 730 | char post_fw; /* POST forward */ |
731 | struct net_device_stats tsu_stats; /* TSU forward status */ | 731 | struct net_device_stats tsu_stats; /* TSU forward status */ |
732 | |||
733 | unsigned no_ether_link:1; | ||
734 | unsigned ether_link_active_low:1; | ||
732 | }; | 735 | }; |
733 | 736 | ||
734 | static inline void sh_eth_soft_swap(char *src, int len) | 737 | static inline void sh_eth_soft_swap(char *src, int len) |