aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ramips/image/mt7620.mk
Commit message (Expand)AuthorAgeFilesLines
* ramips: Add support for D-Link DCH-M225Michael Lee2016-07-111-0/+28
* ramips: add suport for ZBT APE522IIRoger Pueyo Centelles2016-06-221-0/+8
* ramips/image: Add Archer C50 to mt7620 MakefileHenryk Heisig2016-06-131-0/+9
* ramips: fix Netgear EX2700 imagesJoseph C. Lehner2016-06-051-3/+3
* ramips: fix Netgear EX2700 imagesJoseph C. Lehner2016-05-301-2/+3
* ramips: fix Netgear EX2700 imagesJoseph C. Lehner2016-05-271-8/+4
* ramips: fix 8M WT3020 image creationJohn Crispin2016-05-161-1/+1
* ramips: fix ArcherC20i image creation - 3rd tryJohn Crispin2016-05-151-1/+1
* ramips: fix Archer C20i image buildFelix Fietkau2016-05-151-2/+1
* ramips: fix ArcherC20i image creationJohn Crispin2016-05-141-1/+1
* ramips: fix indentation of Build/* template commandsFelix Fietkau2016-05-121-7/+7
* ramips: convert mt7620 to new image building codeJohn Crispin2016-05-121-160/+381
* ramips: add support for Planex MZK-EX750NP.blogic2016-05-101-0/+2
* ramips: add support for Planex MZK-EX300NPJohn Crispin2016-04-261-0/+2
* ramips: add support for Planex CS-QR10John Crispin2016-04-261-0/+2
* ramips: add support for ELECOM WRH-300CRJohn Crispin2016-04-211-0/+15
* ramips: move different subtarget image generation to separate makefiles to im...John Crispin2016-04-011-0/+160
2013 00:03:31 +0100 Subject: [PATCH 21/38] rt2x00: make wmac loadable via OF on rt288x/305x SoC This patch ads the match table to allow loading the wmac support from a devicetree. Signed-off-by: John Crispin <blogic@openwrt.org> --- drivers/net/wireless/rt2x00/rt2800pci.c | 7 +++++++ 1 file changed, 7 insertions(+) --- a/drivers/net/wireless/rt2x00/rt2800soc.c +++ b/drivers/net/wireless/rt2x00/rt2800soc.c @@ -237,10 +237,17 @@ static int rt2800soc_probe(struct platfo return rt2x00soc_probe(pdev, &rt2800soc_ops); } +static const struct of_device_id rt2880_wmac_match[] = { + { .compatible = "ralink,rt2880-wmac" }, + {}, +}; +MODULE_DEVICE_TABLE(of, rt2880_wmac_match); + static struct platform_driver rt2800soc_driver = { .driver = { .name = "rt2800_wmac", .mod_name = KBUILD_MODNAME, + .of_match_table = rt2880_wmac_match, }, .probe = rt2800soc_probe, .remove = rt2x00soc_remove,