diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2011-01-26 20:35:47 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2011-01-26 20:35:47 +0000 |
commit | 256169cbd077681d2fddefc78ad879113d6dc915 (patch) | |
tree | 7b4f00491ab0166409ced1f499332634044eb5bd /target | |
parent | 4f1f672d9e5c0fb26f3d54f31ae76b93580efcc0 (diff) | |
download | upstream-256169cbd077681d2fddefc78ad879113d6dc915.tar.gz upstream-256169cbd077681d2fddefc78ad879113d6dc915.tar.bz2 upstream-256169cbd077681d2fddefc78ad879113d6dc915.zip |
ar71xx: add rtl8366s initvals for the DIR-825 board
SVN-Revision: 25121
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/ar71xx/files/arch/mips/ar71xx/mach-dir-825-b1.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-dir-825-b1.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-dir-825-b1.c index 30d09cbd98..6b4bc76085 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-dir-825-b1.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-dir-825-b1.c @@ -130,9 +130,15 @@ static struct gpio_button dir825b1_gpio_buttons[] __initdata = { } }; +static struct rtl8366s_initval dir825b1_rtl8366s_initvals[] = { + { .reg = 0x06, .val = 0x0108 }, +}; + static struct rtl8366s_platform_data dir825b1_rtl8366s_data = { - .gpio_sda = DIR825B1_GPIO_RTL8366_SDA, - .gpio_sck = DIR825B1_GPIO_RTL8366_SCK, + .gpio_sda = DIR825B1_GPIO_RTL8366_SDA, + .gpio_sck = DIR825B1_GPIO_RTL8366_SCK, + .num_initvals = ARRAY_SIZE(dir825b1_rtl8366s_initvals), + .initvals = dir825b1_rtl8366s_initvals, }; static struct platform_device dir825b1_rtl8366s_device = { |