mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-19 13:48:06 +00:00
ar71xx: fix gpio count for ar7241/ar7242
SVN-Revision: 29532
This commit is contained in:
parent
b878f4a927
commit
7076d74b21
@ -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:
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user