Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1523436
| From | Jiri Pirko <jiri@resnulli.us> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH] net: ethernet: faraday: To support device tree usage. |
| Date | 2016-11-16 13:20 +0100 |
| Message-ID | <sE7m2-2EG-57@gated-at.bofh.it> (permalink) |
| References | <sE4o9-SU-17@gated-at.bofh.it> <sE72G-2hZ-33@gated-at.bofh.it> <sE7cl-2Bo-27@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Wed, Nov 16, 2016 at 01:08:57PM CET, green.hu@gmail.com wrote:
>You are right. I didn't notice that. I should use ftmac100.
Don't top-post please.
>
>On Wed, Nov 16, 2016 at 7:53 PM, Jiri Pirko <jiri@resnulli.us> wrote:
>> Wed, Nov 16, 2016 at 09:43:15AM CET, green.hu@gmail.com wrote:
>>>To support device tree usage for ftmac100.
>>>
>>>Signed-off-by: Greentime Hu <green.hu@gmail.com>
>>>---
>>> 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..81dd9e1 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 mac_of_ids[] = {
>>
>> Prefix of everything in this file is "ftmac100", yet here, you use
>> "mac". I wonder why?!?
>>
>>
>>
>>>+ { .compatible = "andestech,atmac100" },
>>>+ { }
>>>+};
>>>+
>>> static struct platform_driver ftmac100_driver = {
>>> .probe = ftmac100_probe,
>>> .remove = __exit_p(ftmac100_remove),
>>> .driver = {
>>> .name = DRV_NAME,
>>>+ .of_match_table = mac_of_ids
>>> },
>>> };
>>>
>>>@@ -1200,3 +1206,4 @@ static void __exit ftmac100_exit(void)
>>> MODULE_AUTHOR("Po-Yu Chuang <ratbert@faraday-tech.com>");
>>> MODULE_DESCRIPTION("FTMAC100 driver");
>>> MODULE_LICENSE("GPL");
>>>+MODULE_DEVICE_TABLE(of, mac_of_ids);
>>>--
>>>1.7.9.5
>>>
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH] net: ethernet: faraday: To support device tree usage. Greentime Hu <green.hu@gmail.com> - 2016-11-16 10:10 +0100
Re: [PATCH] net: ethernet: faraday: To support device tree usage. Jiri Pirko <jiri@resnulli.us> - 2016-11-16 13:00 +0100
Re: [PATCH] net: ethernet: faraday: To support device tree usage. Greentime Hu <green.hu@gmail.com> - 2016-11-16 13:10 +0100
Re: [PATCH] net: ethernet: faraday: To support device tree usage. Jiri Pirko <jiri@resnulli.us> - 2016-11-16 13:20 +0100
Re: [PATCH] net: ethernet: faraday: To support device tree usage. Andrew Lunn <andrew@lunn.ch> - 2016-11-16 14:50 +0100
Re: [PATCH] net: ethernet: faraday: To support device tree usage. Greentime Hu <green.hu@gmail.com> - 2016-11-16 15:30 +0100
csiph-web