1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-07-05 12:33:15 +02:00

ar71xx: fix gpio count for ar7241/ar7242

SVN-Revision: 29532
This commit is contained in:
Felix Fietkau 2011-12-14 20:47:24 +00:00
parent b878f4a927
commit 7076d74b21
2 changed files with 6 additions and 2 deletions

View File

@ -254,9 +254,12 @@ void __init ar71xx_gpio_init(void)
break;
case AR71XX_SOC_AR7240:
ar71xx_gpio_chip.ngpio = AR7240_GPIO_COUNT;
break;
case AR71XX_SOC_AR7241:
case AR71XX_SOC_AR7242:
ar71xx_gpio_chip.ngpio = AR724X_GPIO_COUNT;
ar71xx_gpio_chip.ngpio = AR7241_GPIO_COUNT;
break;
case AR71XX_SOC_AR9130:

View File

@ -466,7 +466,8 @@ static inline u32 ar71xx_usb_ctrl_rr(unsigned reg)
#define AR724X_GPIO_FUNC_UART_EN BIT(1)
#define AR724X_GPIO_FUNC_JTAG_DISABLE BIT(0)
#define AR724X_GPIO_COUNT 18
#define AR7240_GPIO_COUNT 18
#define AR7241_GPIO_COUNT 20
#define AR91XX_GPIO_FUNC_WMAC_LED_EN BIT(22)
#define AR91XX_GPIO_FUNC_EXP_PORT_CS_EN BIT(21)