aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/lantiq/files/arch/mips/lantiq/xway/dev-wifi-rt2x00.c
blob: 8e271f06ec5b990d7e12ef476ab9b9fcb2fabc4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
 *  Copyright (C) 2011 John Crispin <blogic@openwrt.org>
 *
 *  This program is free software; you can redistribute it and/or modify it
 *  under the terms of the GNU General Public License version 2 as published
 *  by the Free Software Foundation.
 */

#include <linux/init.h>
#include <linux/platform_device.h>
#include <linux/rt2x00_platform.h>
#include <linux/pci.h>

#include "dev-wifi-rt2x00.h"

extern int (*ltqpci_plat_dev_init)(struct pci_dev *dev);
struct rt2x00_platform_data rt2x00_pdata;

static int
rt2x00_pci_plat_dev_init(struct pci_dev *dev)
{
	dev->dev.platform_data = &rt2x00_pdata;
	return 0;
}

void __init
ltq_register_rt2x00(const char *firmware, const u8 *mac)
{
	rt2x00_pdata.eeprom_file_name = kstrdup(firmware, GFP_KERNEL);
	rt2x00_pdata.mac_address = mac;
	ltqpci_plat_dev_init = rt2x00_pci_plat_dev_init;
}