diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2008-01-17 02:19:18 -0600 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2008-01-17 02:19:18 -0600 |
commit | 7dc358bb0de9e2fa341f3b4c914466b1f34b2d89 (patch) | |
tree | f88691a059949e15024eb8f6f5b086559a4a09d3 /cpu/mpc85xx/tlb.c | |
parent | 3b558e26a5ef31635787d6d6e97d70939d4f892d (diff) | |
download | u-boot-imx-7dc358bb0de9e2fa341f3b4c914466b1f34b2d89.zip u-boot-imx-7dc358bb0de9e2fa341f3b4c914466b1f34b2d89.tar.gz u-boot-imx-7dc358bb0de9e2fa341f3b4c914466b1f34b2d89.tar.bz2 |
85xx: Get ride of old TLB setup code
Now that all boards have been converted, remove old config code and the
config option for the new style.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'cpu/mpc85xx/tlb.c')
-rw-r--r-- | cpu/mpc85xx/tlb.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/cpu/mpc85xx/tlb.c b/cpu/mpc85xx/tlb.c index b319ad4..b2c799a 100644 --- a/cpu/mpc85xx/tlb.c +++ b/cpu/mpc85xx/tlb.c @@ -79,7 +79,6 @@ void invalidate_tlb(u8 tlb) void init_tlbs(void) { -#ifdef CONFIG_FSL_INIT_TLBS int i; for (i = 0; i < num_tlb_entries; i++) { @@ -88,7 +87,6 @@ void init_tlbs(void) tlb_table[i].ts, tlb_table[i].esel, tlb_table[i].tsize, tlb_table[i].iprot); } -#endif return ; } |