Skip to content

Commit

Permalink
gpio/mxs: move irq_to_gpio() into gpio-mxs driver
Browse files Browse the repository at this point in the history
As irq_to_gpio() is only being used by gpio-mxs driver, it should be
moved from mach/gpio.h into gpio-mxs.c.

Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
  • Loading branch information
Shawn Guo authored and Sascha Hauer committed Aug 17, 2011
1 parent 1dfa86b commit 7e6c53a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 0 additions & 2 deletions arch/arm/mach-mxs/include/mach/gpio.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,4 @@
#define gpio_cansleep __gpio_cansleep
#define gpio_to_irq __gpio_to_irq

#define irq_to_gpio(irq) ((irq) - MXS_GPIO_IRQ_START)

#endif /* __MACH_MXS_GPIO_H__ */
2 changes: 2 additions & 0 deletions arch/arm/mach-mxs/include/mach/mxs.h
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@
.type = _type, \
}

#define MXS_GPIO_NR(bank, nr) ((bank) * 32 + (nr))

#define MXS_SET_ADDR 0x4
#define MXS_CLR_ADDR 0x8
#define MXS_TOG_ADDR 0xc
Expand Down
2 changes: 2 additions & 0 deletions drivers/gpio/gpio-mxs.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@
#define GPIO_INT_LEV_MASK (1 << 0)
#define GPIO_INT_POL_MASK (1 << 1)

#define irq_to_gpio(irq) ((irq) - MXS_GPIO_IRQ_START)

struct mxs_gpio_port {
void __iomem *base;
int id;
Expand Down

0 comments on commit 7e6c53a

Please sign in to comment.