Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751941AbcL3ICr (ORCPT ); Fri, 30 Dec 2016 03:02:47 -0500 Received: from mail-pg0-f65.google.com ([74.125.83.65]:32781 "EHLO mail-pg0-f65.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751437AbcL3ICq (ORCPT ); Fri, 30 Dec 2016 03:02:46 -0500 From: Greentime Hu To: netdev@vger.kernel.org, devicetree@vger.kernel.org, andrew@lunn.ch, arnd@arndb.de, linux-kernel@vger.kernel.org, jiri@resnulli.us Cc: Greentime Hu Subject: [PATCH v3] net: ethernet: faraday: To support device tree usage. Date: Fri, 30 Dec 2016 15:37:50 +0800 Message-Id: <1483083470-15779-1-git-send-email-green.hu@gmail.com> X-Mailer: git-send-email 1.7.9.5 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1122 Lines: 37 Signed-off-by: Greentime Hu --- Changes in v3: - Nothing changed in this patch but I have committed andestech to vendor-prefixes.txt. drivers/net/ethernet/faraday/ftmac100.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/drivers/net/ethernet/faraday/ftmac100.c b/drivers/net/ethernet/faraday/ftmac100.c index dce5f7b..5d70ee9 100644 --- a/drivers/net/ethernet/faraday/ftmac100.c +++ b/drivers/net/ethernet/faraday/ftmac100.c @@ -1172,11 +1172,17 @@ static int __exit ftmac100_remove(struct platform_device *pdev) return 0; } +static const struct of_device_id ftmac100_of_ids[] = { + { .compatible = "andestech,atmac100" }, + { } +}; + static struct platform_driver ftmac100_driver = { .probe = ftmac100_probe, .remove = __exit_p(ftmac100_remove), .driver = { .name = DRV_NAME, + .of_match_table = ftmac100_of_ids }, }; @@ -1200,3 +1206,4 @@ static void __exit ftmac100_exit(void) MODULE_AUTHOR("Po-Yu Chuang "); MODULE_DESCRIPTION("FTMAC100 driver"); MODULE_LICENSE("GPL"); +MODULE_DEVICE_TABLE(of, ftmac100_of_ids); -- 1.7.9.5