diff options
author | Patrick Trantham <patrick.trantham@fuel7.com> | 2012-12-06 16:16:02 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-12-07 20:26:15 +0100 |
commit | 4257d5837e421948f7ab43dea2f90c263c2a48a2 (patch) | |
tree | 534bbb39c538982a9fedaabff2a5efee129beb08 /drivers/net/phy | |
parent | drivers/net: fix up function prototypes after __dev* removals (diff) | |
download | linux-4257d5837e421948f7ab43dea2f90c263c2a48a2.tar.xz linux-4257d5837e421948f7ab43dea2f90c263c2a48a2.zip |
net: phy: smsc: Fix config_init typo
Correct a mistake made in the previous commit due to reckless
copy-and-pasting.
Signed-off-by: Patrick Trantham <patrick.trantham@fuel7.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy')
-rw-r--r-- | drivers/net/phy/smsc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/phy/smsc.c b/drivers/net/phy/smsc.c index ef883e3048c0..11f34813e23f 100644 --- a/drivers/net/phy/smsc.c +++ b/drivers/net/phy/smsc.c @@ -229,7 +229,7 @@ static struct phy_driver smsc_phy_driver[] = { /* basic functions */ .config_aneg = genphy_config_aneg, .read_status = lan87xx_read_status, - .config_intr = smsc_phy_config_intr, + .config_init = smsc_phy_config_init, /* IRQ related */ .ack_interrupt = smsc_phy_ack_interrupt, |