51 lines
2.3 KiB
Diff
51 lines
2.3 KiB
Diff
|
diff --git a/arch/mips/bcm47xx/board.c b/arch/mips/bcm47xx/board.c
|
||
|
index bd56415..353340f 100644
|
||
|
--- a/arch/mips/bcm47xx/board.c
|
||
|
+++ b/arch/mips/bcm47xx/board.c
|
||
|
@@ -140,6 +140,7 @@ struct bcm47xx_board_type_list2 bcm47xx_board_list_boot_hw[] __initconst = {
|
||
|
{{BCM47XX_BOARD_LINKSYS_WRT300NV11, "Linksys WRT300N V1.1"}, "WRT300N", "1.1"},
|
||
|
{{BCM47XX_BOARD_LINKSYS_WRT310NV1, "Linksys WRT310N V1"}, "WRT310N", "1.0"},
|
||
|
{{BCM47XX_BOARD_LINKSYS_WRT310NV2, "Linksys WRT310N V2"}, "WRT310N", "2.0"},
|
||
|
+ {{BCM47XX_BOARD_LINKSYS_WRT320N_V1, "Linksys WRT320N V1"}, "WRT320N", "1.0"},
|
||
|
{{BCM47XX_BOARD_LINKSYS_WRT54G3GV2, "Linksys WRT54G3GV2-VF"}, "WRT54G3GV2-VF", "1.0"},
|
||
|
{{BCM47XX_BOARD_LINKSYS_WRT610NV1, "Linksys WRT610N V1"}, "WRT610N", "1.0"},
|
||
|
{{BCM47XX_BOARD_LINKSYS_WRT610NV2, "Linksys WRT610N V2"}, "WRT610N", "2.0"},
|
||
|
diff --git a/arch/mips/bcm47xx/buttons.c b/arch/mips/bcm47xx/buttons.c
|
||
|
index 276276a..cf2f1bb 100644
|
||
|
--- a/arch/mips/bcm47xx/buttons.c
|
||
|
+++ b/arch/mips/bcm47xx/buttons.c
|
||
|
@@ -270,6 +270,11 @@ bcm47xx_buttons_linksys_wrt310nv1[] __initconst = {
|
||
|
};
|
||
|
|
||
|
static const struct gpio_keys_button
|
||
|
+bcm47xx_buttons_linksys_wrt320n_v1[] __initconst = {
|
||
|
+ BCM47XX_GPIO_KEY(5, KEY_RESTART),
|
||
|
+};
|
||
|
+
|
||
|
+static const struct gpio_keys_button
|
||
|
bcm47xx_buttons_linksys_wrt54g3gv2[] __initconst = {
|
||
|
BCM47XX_GPIO_KEY(5, KEY_WIMAX),
|
||
|
BCM47XX_GPIO_KEY(6, KEY_RESTART),
|
||
|
@@ -537,6 +542,9 @@ int __init bcm47xx_buttons_register(void)
|
||
|
case BCM47XX_BOARD_LINKSYS_WRT310NV1:
|
||
|
err = bcm47xx_copy_bdata(bcm47xx_buttons_linksys_wrt310nv1);
|
||
|
break;
|
||
|
+ case BCM47XX_BOARD_LINKSYS_WRT320N_V1:
|
||
|
+ err = bcm47xx_copy_bdata(bcm47xx_buttons_linksys_wrt320n_v1);
|
||
|
+ break;
|
||
|
case BCM47XX_BOARD_LINKSYS_WRT54G3GV2:
|
||
|
err = bcm47xx_copy_bdata(bcm47xx_buttons_linksys_wrt54g3gv2);
|
||
|
break;
|
||
|
diff --git a/arch/mips/include/asm/mach-bcm47xx/bcm47xx_board.h b/arch/mips/include/asm/mach-bcm47xx/bcm47xx_board.h
|
||
|
index c41d1dc..ea5aa3e 100644
|
||
|
--- a/arch/mips/include/asm/mach-bcm47xx/bcm47xx_board.h
|
||
|
+++ b/arch/mips/include/asm/mach-bcm47xx/bcm47xx_board.h
|
||
|
@@ -71,6 +71,7 @@ enum bcm47xx_board {
|
||
|
BCM47XX_BOARD_LINKSYS_WRT300NV11,
|
||
|
BCM47XX_BOARD_LINKSYS_WRT310NV1,
|
||
|
BCM47XX_BOARD_LINKSYS_WRT310NV2,
|
||
|
+ BCM47XX_BOARD_LINKSYS_WRT320N_V1,
|
||
|
BCM47XX_BOARD_LINKSYS_WRT54G3GV2,
|
||
|
BCM47XX_BOARD_LINKSYS_WRT54G_TYPE_0101,
|
||
|
BCM47XX_BOARD_LINKSYS_WRT54G_TYPE_0467,
|