ramips: add wifi device for the RT2880 as well
SVN-Revision: 20624
This commit is contained in:
parent
717dc99427
commit
9f3d673dbc
2 changed files with 27 additions and 0 deletions
|
@ -96,3 +96,29 @@ void __init rt288x_register_flash(unsigned int id,
|
|||
platform_device_register(pdev);
|
||||
rt288x_flash_instance++;
|
||||
}
|
||||
|
||||
static struct resource rt288x_wifi_resources[] = {
|
||||
{
|
||||
.start = RT2880_WMAC_BASE,
|
||||
.end = RT2880_WMAC_BASE + 0x3FFFF,
|
||||
.flags = IORESOURCE_MEM,
|
||||
}, {
|
||||
.start = RT288X_CPU_IRQ_WNIC,
|
||||
.end = RT288X_CPU_IRQ_WNIC,
|
||||
.flags = IORESOURCE_IRQ,
|
||||
},
|
||||
};
|
||||
|
||||
static struct platform_device rt288x_wifi_device = {
|
||||
.name = "rt2800_wmac",
|
||||
.resource = rt288x_wifi_resources,
|
||||
.num_resources = ARRAY_SIZE(rt288x_wifi_resources),
|
||||
.dev = {
|
||||
.platform_data = NULL,
|
||||
}
|
||||
};
|
||||
|
||||
void __init rt288x_register_wifi(void)
|
||||
{
|
||||
platform_device_register(&rt288x_wifi_device);
|
||||
}
|
||||
|
|
|
@ -16,5 +16,6 @@ struct physmap_flash_data;
|
|||
|
||||
extern void rt288x_register_flash(unsigned int id,
|
||||
struct physmap_flash_data *pdata) __init;
|
||||
void rt288x_register_wifi(void) __init;
|
||||
|
||||
#endif /* __ASM_MACH_RT288X_PLATFORM_H */
|
||||
|
|
Loading…
Reference in a new issue