diff options
author | Dirk Eibach <eibach@gdsys.de> | 2012-04-27 10:33:46 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2012-04-30 15:01:29 +0200 |
commit | 0e60aa85c82863f34cb13145caa1d0c5255b977b (patch) | |
tree | 6754e504220e6ae94ab39058021815028bc4c783 /board/gdsys/405ep/405ep.c | |
parent | 530846b3c7099ffa40b71a7985256ed03dd61ea7 (diff) | |
download | u-boot-imx-0e60aa85c82863f34cb13145caa1d0c5255b977b.zip u-boot-imx-0e60aa85c82863f34cb13145caa1d0c5255b977b.tar.gz u-boot-imx-0e60aa85c82863f34cb13145caa1d0c5255b977b.tar.bz2 |
powerpc/ppc4xx: Remove typedefs for gdsys FPGA
Signed-off-by: Dirk Eibach <eibach@gdsys.de>
Cc: Stefan Roese <sr@denx.de>
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'board/gdsys/405ep/405ep.c')
-rw-r--r-- | board/gdsys/405ep/405ep.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/board/gdsys/405ep/405ep.c b/board/gdsys/405ep/405ep.c index bea671e..bc9b7d0 100644 --- a/board/gdsys/405ep/405ep.c +++ b/board/gdsys/405ep/405ep.c @@ -105,7 +105,8 @@ int board_early_init_r(void) gd405ep_set_fpga_reset(0); for (k = 0; k < CONFIG_SYS_FPGA_COUNT; ++k) { - ihs_fpga_t *fpga = (ihs_fpga_t *) CONFIG_SYS_FPGA_BASE(k); + struct ihs_fpga *fpga = + (struct ihs_fpga *)CONFIG_SYS_FPGA_BASE(k); #ifdef CONFIG_SYS_FPGA_NO_RFL_HI u16 *reflection_target = &fpga->reflection_low; #else |