diff options
| author | Gabriel Huau <[email protected]> | 2015-04-25 13:16:03 -0700 |
|---|---|---|
| committer | Simon Glass <[email protected]> | 2015-04-29 18:51:49 -0600 |
| commit | 4a34e4b86f75547ff2a546f02196cdfb9439eca4 (patch) | |
| tree | 96fec4f379ef415af395390965b7b9384c7e218c | |
| parent | 685224815bee3a79472ab1a8f345c04d7ea2804b (diff) | |
x86: baytrail: fix the GPIOBASE address
The correct GPIOBASE address on the baytrail is 0x48
Signed-off-by: Gabriel Huau <[email protected]>
Reviewed-by: Bin Meng <[email protected]>
Acked-by: Simon Glass <[email protected]>
| -rw-r--r-- | arch/x86/include/asm/arch-baytrail/gpio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/arch-baytrail/gpio.h b/arch/x86/include/asm/arch-baytrail/gpio.h index ab4e059131d..4e8987ce5cd 100644 --- a/arch/x86/include/asm/arch-baytrail/gpio.h +++ b/arch/x86/include/asm/arch-baytrail/gpio.h @@ -8,6 +8,6 @@ #define _X86_ARCH_GPIO_H_ /* Where in config space is the register that points to the GPIO registers? */ -#define PCI_CFG_GPIOBASE 0x44 +#define PCI_CFG_GPIOBASE 0x48 #endif /* _X86_ARCH_GPIO_H_ */ |
