diff options
Diffstat (limited to 'drivers/net/smc91x.c')
-rw-r--r-- | drivers/net/smc91x.c | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/drivers/net/smc91x.c b/drivers/net/smc91x.c index 10cf0cbc2185..f6285748bd3c 100644 --- a/drivers/net/smc91x.c +++ b/drivers/net/smc91x.c | |||
@@ -72,6 +72,7 @@ static const char version[] = | |||
72 | #include <linux/sched.h> | 72 | #include <linux/sched.h> |
73 | #include <linux/delay.h> | 73 | #include <linux/delay.h> |
74 | #include <linux/interrupt.h> | 74 | #include <linux/interrupt.h> |
75 | #include <linux/irq.h> | ||
75 | #include <linux/errno.h> | 76 | #include <linux/errno.h> |
76 | #include <linux/ioport.h> | 77 | #include <linux/ioport.h> |
77 | #include <linux/crc32.h> | 78 | #include <linux/crc32.h> |
@@ -80,6 +81,7 @@ static const char version[] = | |||
80 | #include <linux/ethtool.h> | 81 | #include <linux/ethtool.h> |
81 | #include <linux/mii.h> | 82 | #include <linux/mii.h> |
82 | #include <linux/workqueue.h> | 83 | #include <linux/workqueue.h> |
84 | #include <linux/of.h> | ||
83 | 85 | ||
84 | #include <linux/netdevice.h> | 86 | #include <linux/netdevice.h> |
85 | #include <linux/etherdevice.h> | 87 | #include <linux/etherdevice.h> |
@@ -1563,9 +1565,9 @@ smc_ethtool_getsettings(struct net_device *dev, struct ethtool_cmd *cmd) | |||
1563 | SUPPORTED_TP | SUPPORTED_AUI; | 1565 | SUPPORTED_TP | SUPPORTED_AUI; |
1564 | 1566 | ||
1565 | if (lp->ctl_rspeed == 10) | 1567 | if (lp->ctl_rspeed == 10) |
1566 | cmd->speed = SPEED_10; | 1568 | ethtool_cmd_speed_set(cmd, SPEED_10); |
1567 | else if (lp->ctl_rspeed == 100) | 1569 | else if (lp->ctl_rspeed == 100) |
1568 | cmd->speed = SPEED_100; | 1570 | ethtool_cmd_speed_set(cmd, SPEED_100); |
1569 | 1571 | ||
1570 | cmd->autoneg = AUTONEG_DISABLE; | 1572 | cmd->autoneg = AUTONEG_DISABLE; |
1571 | cmd->transceiver = XCVR_INTERNAL; | 1573 | cmd->transceiver = XCVR_INTERNAL; |
@@ -2393,6 +2395,17 @@ static int smc_drv_resume(struct device *dev) | |||
2393 | return 0; | 2395 | return 0; |
2394 | } | 2396 | } |
2395 | 2397 | ||
2398 | #ifdef CONFIG_OF | ||
2399 | static const struct of_device_id smc91x_match[] = { | ||
2400 | { .compatible = "smsc,lan91c94", }, | ||
2401 | { .compatible = "smsc,lan91c111", }, | ||
2402 | {}, | ||
2403 | }; | ||
2404 | MODULE_DEVICE_TABLE(of, smc91x_match); | ||
2405 | #else | ||
2406 | #define smc91x_match NULL | ||
2407 | #endif | ||
2408 | |||
2396 | static struct dev_pm_ops smc_drv_pm_ops = { | 2409 | static struct dev_pm_ops smc_drv_pm_ops = { |
2397 | .suspend = smc_drv_suspend, | 2410 | .suspend = smc_drv_suspend, |
2398 | .resume = smc_drv_resume, | 2411 | .resume = smc_drv_resume, |
@@ -2405,6 +2418,7 @@ static struct platform_driver smc_driver = { | |||
2405 | .name = CARDNAME, | 2418 | .name = CARDNAME, |
2406 | .owner = THIS_MODULE, | 2419 | .owner = THIS_MODULE, |
2407 | .pm = &smc_drv_pm_ops, | 2420 | .pm = &smc_drv_pm_ops, |
2421 | .of_match_table = smc91x_match, | ||
2408 | }, | 2422 | }, |
2409 | }; | 2423 | }; |
2410 | 2424 | ||