diff options
author | Wolfram Sang <w.sang@pengutronix.de> | 2011-02-23 08:51:58 -0500 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2011-03-01 08:19:48 -0500 |
commit | d4abe93386890061f109f2f2a46761ac5129bed6 (patch) | |
tree | 666bf9d6a9b8e4c0bcc85d9aa700a0b85384d8df | |
parent | ea7ee4cae4db6630b388f39c3abe4f86f67211f9 (diff) |
arm: mach-mx3: use IMX_GPIO_NR instead of hard-coded values
The latter are error-prone because the bank number is one less than one
would read in the documentation.
Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
Acked-by: Eric Benard <eric@eukrea.com>
Cc: Sascha Hauer <s.hauer@pengutronix.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r-- | arch/arm/mach-mx3/eukrea_mbimxsd-baseboard.c | 4 | ||||
-rw-r--r-- | arch/arm/mach-mx3/mach-cpuimx35.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-mx3/mach-pcm043.c | 6 |
3 files changed, 6 insertions, 6 deletions
diff --git a/arch/arm/mach-mx3/eukrea_mbimxsd-baseboard.c b/arch/arm/mach-mx3/eukrea_mbimxsd-baseboard.c index 14a5ffc939ad..80761474c0f8 100644 --- a/arch/arm/mach-mx3/eukrea_mbimxsd-baseboard.c +++ b/arch/arm/mach-mx3/eukrea_mbimxsd-baseboard.c | |||
@@ -165,8 +165,8 @@ static iomux_v3_cfg_t eukrea_mbimxsd_pads[] = { | |||
165 | MX35_PAD_SD1_DATA3__ESDHC1_DAT3, | 165 | MX35_PAD_SD1_DATA3__ESDHC1_DAT3, |
166 | }; | 166 | }; |
167 | 167 | ||
168 | #define GPIO_LED1 (2 * 32 + 29) | 168 | #define GPIO_LED1 IMX_GPIO_NR(3, 29) |
169 | #define GPIO_SWITCH1 (2 * 32 + 25) | 169 | #define GPIO_SWITCH1 IMX_GPIO_NR(3, 25) |
170 | #define GPIO_LCDPWR (4) | 170 | #define GPIO_LCDPWR (4) |
171 | 171 | ||
172 | static void eukrea_mbimxsd_lcd_power_set(struct plat_lcd_data *pd, | 172 | static void eukrea_mbimxsd_lcd_power_set(struct plat_lcd_data *pd, |
diff --git a/arch/arm/mach-mx3/mach-cpuimx35.c b/arch/arm/mach-mx3/mach-cpuimx35.c index 6db0520e8794..a42f1a98f1a2 100644 --- a/arch/arm/mach-mx3/mach-cpuimx35.c +++ b/arch/arm/mach-mx3/mach-cpuimx35.c | |||
@@ -60,7 +60,7 @@ static struct tsc2007_platform_data tsc2007_info = { | |||
60 | .x_plate_ohms = 180, | 60 | .x_plate_ohms = 180, |
61 | }; | 61 | }; |
62 | 62 | ||
63 | #define TSC2007_IRQGPIO (2 * 32 + 2) | 63 | #define TSC2007_IRQGPIO IMX_GPIO_NR(3, 2) |
64 | static struct i2c_board_info eukrea_cpuimx35_i2c_devices[] = { | 64 | static struct i2c_board_info eukrea_cpuimx35_i2c_devices[] = { |
65 | { | 65 | { |
66 | I2C_BOARD_INFO("pcf8563", 0x51), | 66 | I2C_BOARD_INFO("pcf8563", 0x51), |
diff --git a/arch/arm/mach-mx3/mach-pcm043.c b/arch/arm/mach-mx3/mach-pcm043.c index 6c662c73aaa3..262af17db44c 100644 --- a/arch/arm/mach-mx3/mach-pcm043.c +++ b/arch/arm/mach-mx3/mach-pcm043.c | |||
@@ -219,9 +219,9 @@ static iomux_v3_cfg_t pcm043_pads[] = { | |||
219 | MX35_PAD_SD1_DATA3__ESDHC1_DAT3, | 219 | MX35_PAD_SD1_DATA3__ESDHC1_DAT3, |
220 | }; | 220 | }; |
221 | 221 | ||
222 | #define AC97_GPIO_TXFS (1 * 32 + 31) | 222 | #define AC97_GPIO_TXFS IMX_GPIO_NR(2, 31) |
223 | #define AC97_GPIO_TXD (1 * 32 + 28) | 223 | #define AC97_GPIO_TXD IMX_GPIO_NR(2, 28) |
224 | #define AC97_GPIO_RESET (1 * 32 + 0) | 224 | #define AC97_GPIO_RESET IMX_GPIO_NR(2, 0) |
225 | 225 | ||
226 | static void pcm043_ac97_warm_reset(struct snd_ac97 *ac97) | 226 | static void pcm043_ac97_warm_reset(struct snd_ac97 *ac97) |
227 | { | 227 | { |