diff options
Diffstat (limited to 'arch/arm/mach-pxa/mfp-pxa2xx.c')
| -rw-r--r-- | arch/arm/mach-pxa/mfp-pxa2xx.c | 6 | 
1 files changed, 5 insertions, 1 deletions
diff --git a/arch/arm/mach-pxa/mfp-pxa2xx.c b/arch/arm/mach-pxa/mfp-pxa2xx.c index 43a5f6861ca..f14775536b8 100644 --- a/arch/arm/mach-pxa/mfp-pxa2xx.c +++ b/arch/arm/mach-pxa/mfp-pxa2xx.c @@ -13,6 +13,7 @@   *  published by the Free Software Foundation.   */  #include <linux/gpio.h> +#include <linux/gpio-pxa.h>  #include <linux/module.h>  #include <linux/kernel.h>  #include <linux/init.h> @@ -20,7 +21,6 @@  #include <mach/pxa2xx-regs.h>  #include <mach/mfp-pxa2xx.h> -#include <mach/gpio-pxa.h>  #include "generic.h" @@ -29,6 +29,10 @@  #define GAFR_L(x)	__GAFR(0, x)  #define GAFR_U(x)	__GAFR(1, x) +#define BANK_OFF(n)	(((n) < 3) ? (n) << 2 : 0x100 + (((n) - 3) << 2)) +#define GPLR(x)		__REG2(0x40E00000, BANK_OFF((x) >> 5)) +#define GPDR(x)		__REG2(0x40E00000, BANK_OFF((x) >> 5) + 0x0c) +  #define PWER_WE35	(1 << 24)  struct gpio_desc {  |