diff options
author | Bryan O'Donoghue <bodonoghue@codehermit.ie> | 2008-02-17 22:57:47 +0000 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-03-25 22:28:34 +0100 |
commit | 77ff7b7444ceb8022b46114f3d0b6d18e2fd1138 (patch) | |
tree | bfa2e231bae821ff19e0988f8760b6bc0349ab28 /include | |
parent | 9c666a7db0b2285a270c68810889ce7d5dba304b (diff) | |
download | u-boot-imx-77ff7b7444ceb8022b46114f3d0b6d18e2fd1138.zip u-boot-imx-77ff7b7444ceb8022b46114f3d0b6d18e2fd1138.tar.gz u-boot-imx-77ff7b7444ceb8022b46114f3d0b6d18e2fd1138.tar.bz2 |
8xx: Update OF support on 8xx
This patch does some shifting around of OF support on 8xx.
Signed-off-by: Bryan O'Donoghue <bodonoghue@codehermit.ie>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-ppc/global_data.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/asm-ppc/global_data.h b/include/asm-ppc/global_data.h index e07092b..ff6624a 100644 --- a/include/asm-ppc/global_data.h +++ b/include/asm-ppc/global_data.h @@ -40,8 +40,11 @@ typedef struct global_data { bd_t *bd; unsigned long flags; unsigned long baudrate; - unsigned long cpu_clk; /* CPU clock in Hz! */ + unsigned long cpu_clk; /* CPU clock in Hz! */ unsigned long bus_clk; +#if defined(CONFIG_8xx) + unsigned long brg_clk; +#endif #if defined(CONFIG_CPM2) /* There are many clocks on the MPC8260 - see page 9-5 */ unsigned long vco_out; |