diff options
author | Stephen Warren <swarren@nvidia.com> | 2011-02-19 22:38:54 -0500 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2011-02-22 17:48:42 -0500 |
commit | e19e881fcbd08bac0e6c9187ade8e3802d8334df (patch) | |
tree | 1aec7e4a932bee8e76f8ff7c3cb3ef74e88608a3 | |
parent | cd51d0edecc37f1061a5091450e6c7e2a8a16d68 (diff) |
ARM: tegra: Fix typo in TEGRA_IRQ_TO_GPIO
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Colin Cross <ccross@android.com>
-rw-r--r-- | arch/arm/mach-tegra/include/mach/gpio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-tegra/include/mach/gpio.h b/arch/arm/mach-tegra/include/mach/gpio.h index e31f486d69a2..12a7cf6874cd 100644 --- a/arch/arm/mach-tegra/include/mach/gpio.h +++ b/arch/arm/mach-tegra/include/mach/gpio.h | |||
@@ -31,7 +31,7 @@ | |||
31 | #define gpio_cansleep __gpio_cansleep | 31 | #define gpio_cansleep __gpio_cansleep |
32 | 32 | ||
33 | #define TEGRA_GPIO_TO_IRQ(gpio) (INT_GPIO_BASE + (gpio)) | 33 | #define TEGRA_GPIO_TO_IRQ(gpio) (INT_GPIO_BASE + (gpio)) |
34 | #define TEGRA_IRQ_TO_GPIO(irq) ((gpio) - INT_GPIO_BASE) | 34 | #define TEGRA_IRQ_TO_GPIO(irq) ((irq) - INT_GPIO_BASE) |
35 | 35 | ||
36 | static inline int gpio_to_irq(unsigned int gpio) | 36 | static inline int gpio_to_irq(unsigned int gpio) |
37 | { | 37 | { |