All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] smc91x: add devicetree support
@ 2011-01-25  5:59 ` Thomas Chou
  0 siblings, 0 replies; 19+ messages in thread
From: Thomas Chou @ 2011-01-25  5:59 UTC (permalink / raw)
  To: Grant Likely, Nicolas Pitre
  Cc: linux-kernel, nios2-dev, devicetree-discuss, netdev, Thomas Chou

Signed-off-by: Thomas Chou <thomas@wytron.com.tw>
---
 drivers/net/smc91x.c |   10 ++++++++++
 1 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/drivers/net/smc91x.c b/drivers/net/smc91x.c
index 726df61..d29e18d 100644
--- a/drivers/net/smc91x.c
+++ b/drivers/net/smc91x.c
@@ -81,6 +81,7 @@ static const char version[] =
 #include <linux/ethtool.h>
 #include <linux/mii.h>
 #include <linux/workqueue.h>
+#include <linux/of.h>
 
 #include <linux/netdevice.h>
 #include <linux/etherdevice.h>
@@ -2394,6 +2395,12 @@ static int smc_drv_resume(struct device *dev)
 	return 0;
 }
 
+static const struct of_device_id smc91x_match[] = {
+	{ .compatible = "smsc,smc91x", },
+	{},
+}
+MODULE_DEVICE_TABLE(of, smc91x_match);
+
 static struct dev_pm_ops smc_drv_pm_ops = {
 	.suspend	= smc_drv_suspend,
 	.resume		= smc_drv_resume,
@@ -2406,6 +2413,9 @@ static struct platform_driver smc_driver = {
 		.name	= CARDNAME,
 		.owner	= THIS_MODULE,
 		.pm	= &smc_drv_pm_ops,
+#ifdef CONFIG_OF
+		.of_match_table = smc91x_match,
+#endif
 	},
 };
 
-- 
1.7.3.5


^ permalink raw reply related	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2011-01-26 15:33 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-01-25  5:59 [PATCH] smc91x: add devicetree support Thomas Chou
2011-01-25  5:59 ` Thomas Chou
2011-01-25  6:24 ` Grant Likely
2011-01-25  6:24   ` Grant Likely
2011-01-25  7:09   ` [PATCH v2] " Thomas Chou
2011-01-25  7:09     ` Thomas Chou
2011-01-25 12:11     ` [PATCH v3] " Thomas Chou
2011-01-26  3:45       ` David Miller
2011-01-26  3:45         ` David Miller
2011-01-26  5:22         ` [PATCH v4] " Thomas Chou
2011-01-26  5:22           ` Thomas Chou
2011-01-26  5:52           ` Grant Likely
2011-01-26  5:52             ` Grant Likely
2011-01-26  6:42             ` David Miller
2011-01-26  6:42               ` David Miller
2011-01-26 15:17           ` Nicolas Pitre
2011-01-26 15:17             ` Nicolas Pitre
2011-01-26 15:32             ` Grant Likely
2011-01-26 15:32               ` Grant Likely

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.