add dummy code for the TRENDnet TEW-632BRP board
SVN-Revision: 13531
This commit is contained in:
parent
df90a3627d
commit
af5eb6003d
7 changed files with 30 additions and 0 deletions
|
@ -8,6 +8,7 @@ CONFIG_AR71XX_MACH_AP83=y
|
|||
CONFIG_AR71XX_MACH_AW_NR580=y
|
||||
CONFIG_AR71XX_MACH_GENERIC=y
|
||||
CONFIG_AR71XX_MACH_RB_4XX=y
|
||||
CONFIG_AR71XX_MACH_TEW_632BRP=y
|
||||
CONFIG_AR71XX_MACH_WP543=y
|
||||
CONFIG_AR71XX_WDT=y
|
||||
# CONFIG_ARCH_HAS_ILOG2_U32 is not set
|
||||
|
|
|
@ -8,6 +8,7 @@ CONFIG_AR71XX_MACH_AP83=y
|
|||
CONFIG_AR71XX_MACH_AW_NR580=y
|
||||
CONFIG_AR71XX_MACH_GENERIC=y
|
||||
CONFIG_AR71XX_MACH_RB_4XX=y
|
||||
CONFIG_AR71XX_MACH_TEW_632BRP=y
|
||||
CONFIG_AR71XX_MACH_WP543=y
|
||||
CONFIG_AR71XX_WDT=y
|
||||
# CONFIG_ARCH_HAS_ILOG2_U32 is not set
|
||||
|
|
|
@ -27,6 +27,10 @@ config AR71XX_MACH_RB_4XX
|
|||
bool "MikroTik RouterBOARD 4xx series support"
|
||||
default y
|
||||
|
||||
config AR71XX_MACH_TEW_632BRP
|
||||
bool "TRENDnet TEW-632BRP support"
|
||||
default y
|
||||
|
||||
endmenu
|
||||
|
||||
endif
|
||||
|
|
|
@ -14,4 +14,5 @@ obj-$(CONFIG_AR71XX_MACH_AP83) += mach-ap83.o
|
|||
obj-$(CONFIG_AR71XX_MACH_AW_NR580) += mach-aw-nr580.o
|
||||
obj-$(CONFIG_AR71XX_MACH_GENERIC) += mach-generic.o
|
||||
obj-$(CONFIG_AR71XX_MACH_RB_4XX) += mach-rb-4xx.o
|
||||
obj-$(CONFIG_AR71XX_MACH_TEW_632BRP) += mach-tew-632brp.o
|
||||
obj-$(CONFIG_AR71XX_MACH_WP543) += mach-wp543.o
|
||||
|
|
19
target/linux/ar71xx/files/arch/mips/ar71xx/mach-tew-632brp.c
Normal file
19
target/linux/ar71xx/files/arch/mips/ar71xx/mach-tew-632brp.c
Normal file
|
@ -0,0 +1,19 @@
|
|||
/*
|
||||
* TrendNET TEW-632BRP board support
|
||||
*
|
||||
* Copyright (C) 2008 Gabor Juhos <juhosg@openwrt.org>
|
||||
* Copyright (C) 2008 Imre Kaloz <kaloz@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 <asm/mips_machine.h>
|
||||
#include <asm/mach-ar71xx/ar71xx.h>
|
||||
|
||||
static void __init tew_632brp_setup(void)
|
||||
{
|
||||
}
|
||||
|
||||
MIPS_MACHINE(AR71XX_MACH_TEW_632BRP, "TRENDnet TEW-632BRP", tew_632brp_setup);
|
|
@ -49,6 +49,9 @@ static struct board_rec boards[] __initdata = {
|
|||
}, {
|
||||
.name = "AP83",
|
||||
.mach_type = AR71XX_MACH_AP83,
|
||||
}, {
|
||||
.name = "TEW-632BRP",
|
||||
.mach_type = AR71XX_MACH_TEW_632BRP,
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
@ -113,6 +113,7 @@ extern unsigned long ar71xx_mach_type;
|
|||
#define AR71XX_MACH_RB_493 5 /* Mikrotik RouterBOARD 493/493AH */
|
||||
#define AR71XX_MACH_AW_NR580 6 /* AzureWave AW-NR580 */
|
||||
#define AR71XX_MACH_AP83 7 /* Atheros AP83 */
|
||||
#define AR71XX_MACH_TEW_632BRP 8 /* TRENDnet TEW-632BRP */
|
||||
|
||||
/*
|
||||
* PLL block
|
||||
|
|
Loading…
Reference in a new issue