diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2010-03-05 02:53:23 +0000 |
---|---|---|
committer | Lars-Peter Clausen <lars@metafoo.de> | 2010-03-05 02:53:23 +0000 |
commit | d9e32f1932ecd3ba44ef6d130cee922ed03095e6 (patch) | |
tree | b2f1abfc3bea1f6dfb9302fb2fefe7b18370a53d /target/linux/xburst | |
parent | 020df2b0dc920a1cec242dbc4423e2789373520f (diff) | |
download | upstream-d9e32f1932ecd3ba44ef6d130cee922ed03095e6.tar.gz upstream-d9e32f1932ecd3ba44ef6d130cee922ed03095e6.tar.bz2 upstream-d9e32f1932ecd3ba44ef6d130cee922ed03095e6.zip |
gpio.h: Add proper parenthesis to JZ_GPIO_PORTX macros
SVN-Revision: 19983
Diffstat (limited to 'target/linux/xburst')
-rw-r--r-- | target/linux/xburst/files-2.6.32/arch/mips/include/asm/mach-jz4740/gpio.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/target/linux/xburst/files-2.6.32/arch/mips/include/asm/mach-jz4740/gpio.h b/target/linux/xburst/files-2.6.32/arch/mips/include/asm/mach-jz4740/gpio.h index 90d37ddd06..99206dd7b4 100644 --- a/target/linux/xburst/files-2.6.32/arch/mips/include/asm/mach-jz4740/gpio.h +++ b/target/linux/xburst/files-2.6.32/arch/mips/include/asm/mach-jz4740/gpio.h @@ -76,10 +76,10 @@ uint32_t jz_gpio_port_get_value(int port, uint32_t mask); #include <asm/mach-generic/gpio.h> -#define JZ_GPIO_PORTA(x) (x + 32 * 0) -#define JZ_GPIO_PORTB(x) (x + 32 * 1) -#define JZ_GPIO_PORTC(x) (x + 32 * 2) -#define JZ_GPIO_PORTD(x) (x + 32 * 3) +#define JZ_GPIO_PORTA(x) ((x) + 32 * 0) +#define JZ_GPIO_PORTB(x) ((x) + 32 * 1) +#define JZ_GPIO_PORTC(x) ((x) + 32 * 2) +#define JZ_GPIO_PORTD(x) ((x) + 32 * 3) /* Port A function pins */ #define JZ_GPIO_MEM_DATA0 JZ_GPIO_PORTA(0) |