diff options
author | Florian Fainelli <florian@openwrt.org> | 2010-03-01 23:36:32 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2010-04-12 17:26:16 +0100 |
commit | d1b28758c6b46f6d04ef6017b51f614aecdb4abe (patch) | |
tree | 93ccf0a33485c146687cd4e49d862d9403c05f6e /arch/mips | |
parent | b44c779ae0dedf3a6503c253954e570361b33f2b (diff) | |
download | linux-3.10-d1b28758c6b46f6d04ef6017b51f614aecdb4abe.tar.gz linux-3.10-d1b28758c6b46f6d04ef6017b51f614aecdb4abe.tar.bz2 linux-3.10-d1b28758c6b46f6d04ef6017b51f614aecdb4abe.zip |
MIPS: BCM63xx: Fix BCM6338 and BCM6345 gpio count
The number of GPIOs on BCM6338 is 8, while BCM6345 has only 16 GPIOs
available.
Signed-off-by: Florian Fainelli <florian@openwrt.org>
To: linux-mips@linux-mips.org
Patchwork: http://patchwork.linux-mips.org/patch/1016/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/include/asm/mach-bcm63xx/bcm63xx_gpio.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/mips/include/asm/mach-bcm63xx/bcm63xx_gpio.h b/arch/mips/include/asm/mach-bcm63xx/bcm63xx_gpio.h index 76a0b7216af..43d4da0b1e9 100644 --- a/arch/mips/include/asm/mach-bcm63xx/bcm63xx_gpio.h +++ b/arch/mips/include/asm/mach-bcm63xx/bcm63xx_gpio.h @@ -10,6 +10,10 @@ static inline unsigned long bcm63xx_gpio_count(void) switch (bcm63xx_get_cpu_id()) { case BCM6358_CPU_ID: return 40; + case BCM6338_CPU_ID: + return 8; + case BCM6345_CPU_ID: + return 16; case BCM6348_CPU_ID: default: return 37; |