lantiq: Tune the XWAY subtarget cflags
[openwrt.git] / package / mac80211 / patches / 612-rt2x00-make-wmac-loadable-via-OF-on-rt288x-305x-SoC.patch
1 From 04dbd87265f6ba4a373b211ba324b437d224fb2d Mon Sep 17 00:00:00 2001
2 From: John Crispin <blogic@openwrt.org>
3 Date: Sun, 17 Mar 2013 00:03:31 +0100
4 Subject: [PATCH 21/38] rt2x00: make wmac loadable via OF on rt288x/305x SoC
5
6 This patch ads the match table to allow loading the wmac support from a
7 devicetree.
8
9 Signed-off-by: John Crispin <blogic@openwrt.org>
10 ---
11  drivers/net/wireless/rt2x00/rt2800pci.c |    7 +++++++
12  1 file changed, 7 insertions(+)
13
14 --- a/drivers/net/wireless/rt2x00/rt2800pci.c
15 +++ b/drivers/net/wireless/rt2x00/rt2800pci.c
16 @@ -1308,11 +1308,18 @@ static int rt2800soc_probe(struct platfo
17         return rt2x00soc_probe(pdev, &rt2800pci_ops);
18  }
19  
20 +static const struct of_device_id rt2880_wmac_match[] = {
21 +       { .compatible = "ralink,rt2880-wmac" },
22 +       {},
23 +};
24 +MODULE_DEVICE_TABLE(of, rt2880_wmac_match);
25 +
26  static struct platform_driver rt2800soc_driver = {
27         .driver         = {
28                 .name           = "rt2800_wmac",
29                 .owner          = THIS_MODULE,
30                 .mod_name       = KBUILD_MODNAME,
31 +               .of_match_table = rt2880_wmac_match,
32         },
33         .probe          = rt2800soc_probe,
34         .remove         = rt2x00soc_remove,