summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2008-08-04 15:21:41 +0000
committerGabor Juhos <juhosg@openwrt.org>2008-08-04 15:21:41 +0000
commit3ea42e80839aff75ffc1db6d4295a8d13e4e3525 (patch)
tree98efa507c56e3b109961181d66b8a42a95ee54f1
parenta641792a7836636599a1321bdd465ef100be24cd (diff)
downloadmaster-31e0f0ae-3ea42e80839aff75ffc1db6d4295a8d13e4e3525.tar.gz
master-31e0f0ae-3ea42e80839aff75ffc1db6d4295a8d13e4e3525.tar.bz2
master-31e0f0ae-3ea42e80839aff75ffc1db6d4295a8d13e4e3525.zip
add missing buttons device for RB-1xx boards, thanks to Christophe Lucas
SVN-Revision: 12095
-rw-r--r--target/linux/adm5120/files/arch/mips/adm5120/boards/mikrotik.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/target/linux/adm5120/files/arch/mips/adm5120/boards/mikrotik.c b/target/linux/adm5120/files/arch/mips/adm5120/boards/mikrotik.c
index 772b0eba16..54fb8c03b7 100644
--- a/target/linux/adm5120/files/arch/mips/adm5120/boards/mikrotik.c
+++ b/target/linux/adm5120/files/arch/mips/adm5120/boards/mikrotik.c
@@ -86,6 +86,7 @@ static struct mtd_partition rb1xx_nand_parts[] = {
static struct platform_device *rb1xx_devices[] __initdata = {
&adm5120_flash0_device,
&adm5120_nand_device,
+ &adm5120_buttons_device,
};
/*
@@ -132,6 +133,7 @@ static struct platform_device rb153_cf_device = {
static struct platform_device *rb153_devices[] __initdata = {
&adm5120_flash0_device,
&adm5120_nand_device,
+ &adm5120_buttons_device,
&rb153_cf_device,
};
@@ -275,7 +277,7 @@ static void __init rb150_setup(void)
adm5120_buttons_data.nbuttons = 1;
adm5120_buttons[0].desc = "reset button";
- adm5120_buttons[0].gpio = ADM5120_GPIO_PIN1;
+ adm5120_buttons[0].gpio = ADM5120_GPIO_PIN1; /* FIXME: valid? */
adm5120_flash0_data.window_size = 512*1024;