| 1 | /* |
| 2 | * Copyright (C) 2011 John Crispin <blogic@openwrt.org> |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify it |
| 5 | * under the terms of the GNU General Public License version 2 as published |
| 6 | * by the Free Software Foundation. |
| 7 | */ |
| 8 | |
| 9 | #include <linux/init.h> |
| 10 | #include <linux/platform_device.h> |
| 11 | #include <linux/rt2x00_platform.h> |
| 12 | #include <linux/pci.h> |
| 13 | |
| 14 | #include "dev-wifi-rt2x00.h" |
| 15 | |
| 16 | extern int (*ltqpci_plat_dev_init)(struct pci_dev *dev); |
| 17 | struct rt2x00_platform_data rt2x00_pdata; |
| 18 | |
| 19 | static int |
| 20 | rt2x00_pci_plat_dev_init(struct pci_dev *dev) |
| 21 | { |
| 22 | dev->dev.platform_data = &rt2x00_pdata; |
| 23 | return 0; |
| 24 | } |
| 25 | |
| 26 | void __init |
| 27 | ltq_register_rt2x00(const char *firmware) |
| 28 | { |
| 29 | rt2x00_pdata.eeprom_file_name = kstrdup(firmware, GFP_KERNEL); |
| 30 | ltqpci_plat_dev_init = rt2x00_pci_plat_dev_init; |
| 31 | } |
| 32 | |