diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2010-03-09 18:05:48 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2010-03-09 18:05:48 +0000 |
commit | b21308313eeebf5cb429a3a2a19db9aaebc94de4 (patch) | |
tree | 7189df9dc4bf4dd7e1e901ac19d816aa30f04bfc /target/linux/ar71xx/files | |
parent | 45ff7289fe88bb81109dc0c002b16d96e7adbf5c (diff) | |
download | mtk-20170518-b21308313eeebf5cb429a3a2a19db9aaebc94de4.zip mtk-20170518-b21308313eeebf5cb429a3a2a19db9aaebc94de4.tar.gz mtk-20170518-b21308313eeebf5cb429a3a2a19db9aaebc94de4.tar.bz2 |
ar71xx: override lan port names on the RB750
SVN-Revision: 20096
Diffstat (limited to 'target/linux/ar71xx/files')
-rw-r--r-- | target/linux/ar71xx/files/arch/mips/ar71xx/mach-rb750.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-rb750.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-rb750.c index a39101d..3972f57 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-rb750.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-rb750.c @@ -55,6 +55,13 @@ static struct platform_device rb750_leds_device = { } }; +static const char *rb750_port_names[AP91_ETH_NUM_PORT_NAMES] __initdata = { + "port5", + "port4", + "port3", + "port2", +}; + static struct platform_device rb750_nand_device = { .name = "rb750-nand", .id = -1, @@ -117,7 +124,7 @@ static void __init rb750_setup(void) AR724X_GPIO_FUNC_ETH_SWITCH_LED3_EN | AR724X_GPIO_FUNC_ETH_SWITCH_LED4_EN); - ap91_eth_init(NULL, NULL); + ap91_eth_init(NULL, rb750_port_names); platform_device_register(&rb750_leds_device); platform_device_register(&rb750_nand_device); } |