diff options
author | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-08-27 14:55:26 +0000 |
---|---|---|
committer | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-08-27 14:55:26 +0000 |
commit | aec6c8f61013b31c229ba14baaa08ab544301999 (patch) | |
tree | 09ac117ad46ccf38bfd963d71cc3313c482ba5d0 /target/linux/ar71xx/files | |
parent | ef286ca0dcd214c8509342d38d720611af88bba9 (diff) |
ar71xx: only allow RGMII mode on the 2nd ethernet MAC of the AR7240
Signed-off-by: Daniel Golle <dgolle@allnet.de>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33280 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/files')
-rw-r--r-- | target/linux/ar71xx/files/arch/mips/ath79/dev-eth.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ath79/dev-eth.c b/target/linux/ar71xx/files/arch/mips/ath79/dev-eth.c index e6a507601..9cd6e37ef 100644 --- a/target/linux/ar71xx/files/arch/mips/ath79/dev-eth.c +++ b/target/linux/ar71xx/files/arch/mips/ath79/dev-eth.c @@ -616,7 +616,14 @@ static int __init ath79_setup_phy_if_mode(unsigned int id, break; case ATH79_SOC_AR7242: - /* FIXME */ + switch (pdata->phy_if_mode) { + case PHY_INTERFACE_MODE_RGMII: + break; + default: + /* Other PHY modes are not tested yet. */ + return -EINVAL; + } + break; case ATH79_SOC_AR9341: case ATH79_SOC_AR9342: |