diff options
author | Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> | 2013-08-22 02:18:30 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-08-23 01:32:18 +0400 |
commit | be23ab5131621c0dadacdd72de7c94ab168627ee (patch) | |
tree | 2d5c7aa7045722f2f3b656bf5115a88aa416b00d /arch/sh | |
parent | 0bf2bbd27717e7766c74205b9aa6f7c462c28f6d (diff) | |
download | linux-be23ab5131621c0dadacdd72de7c94ab168627ee.tar.xz |
SolutionEngine7724: fix typo in Ether platform data
Commit bd61224b1cbec096694e89c4187119c8576fe186 (SolutionEngine7724: fix Ether
support) has a typo in the 'phy_interface' field name of the platform data which
causes build error -- fix it.
Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sh')
-rw-r--r-- | arch/sh/boards/mach-se/7724/setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/boards/mach-se/7724/setup.c b/arch/sh/boards/mach-se/7724/setup.c index e96e053f2609..21e4230659a5 100644 --- a/arch/sh/boards/mach-se/7724/setup.c +++ b/arch/sh/boards/mach-se/7724/setup.c @@ -377,7 +377,7 @@ static struct resource sh_eth_resources[] = { static struct sh_eth_plat_data sh_eth_plat = { .phy = 0x1f, /* SMSC LAN8187 */ .edmac_endian = EDMAC_LITTLE_ENDIAN, - .phy_interace = PHY_INTERFACE_MODE_MII, + .phy_interface = PHY_INTERFACE_MODE_MII, }; static struct platform_device sh_eth_device = { |