diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2021-02-25 17:22:49 +0800 |
---|---|---|
committer | Priyanka Jain <priyanka.jain@nxp.com> | 2021-03-05 10:25:43 +0530 |
commit | f94cbb5b87e19ad4316966b581bd40f70ee80c93 (patch) | |
tree | 6891b73b33ee63dc6143909c8c04766fc4aaf608 | |
parent | 843d9b8d03163d6e5f95cb1d1a9831b84861447c (diff) | |
download | u-boot-f94cbb5b87e19ad4316966b581bd40f70ee80c93.zip u-boot-f94cbb5b87e19ad4316966b581bd40f70ee80c93.tar.gz u-boot-f94cbb5b87e19ad4316966b581bd40f70ee80c93.tar.bz2 |
ppc: mpc85xx: Add 'gpibe' register to 'struct ccsr_gpio'
Without this, the DM GPIO driver for MPC8xxx does not compile for
MPC85xx SoCs.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com>
-rw-r--r-- | arch/powerpc/include/asm/immap_85xx.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/include/asm/immap_85xx.h b/arch/powerpc/include/asm/immap_85xx.h index c6c0092..905613f 100644 --- a/arch/powerpc/include/asm/immap_85xx.h +++ b/arch/powerpc/include/asm/immap_85xx.h @@ -272,6 +272,7 @@ typedef struct ccsr_gpio { u32 gpier; u32 gpimr; u32 gpicr; + u32 gpibe; } ccsr_gpio_t; #endif |