diff options
| author | Grant Likely <grant.likely@secretlab.ca> | 2007-11-20 08:19:56 -0700 |
|---|---|---|
| committer | Grant Likely <grant.likely@secretlab.ca> | 2007-11-20 08:19:56 -0700 |
| commit | f92edbd8a0ef16a2b9127cbb564c09685728e4b0 (patch) | |
| tree | ae33aacff092561e2c64eabc11a8adc5e2acea6b /cpu/mips/cpu.c | |
| parent | efe33035acd5f7c13963a4d52e5aac1b68612ae4 (diff) | |
| parent | 9a337ddc154a10a26f117fd147b009abcdeba75a (diff) | |
| download | olio-uboot-2014.01-f92edbd8a0ef16a2b9127cbb564c09685728e4b0.tar.xz olio-uboot-2014.01-f92edbd8a0ef16a2b9127cbb564c09685728e4b0.zip | |
Merge branch 'origin' into kconfig-for-1.3.1
Diffstat (limited to 'cpu/mips/cpu.c')
| -rw-r--r-- | cpu/mips/cpu.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpu/mips/cpu.c b/cpu/mips/cpu.c index f48675e99..7559ac657 100644 --- a/cpu/mips/cpu.c +++ b/cpu/mips/cpu.c @@ -39,12 +39,12 @@ int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) return 0; } -void flush_cache (ulong start_addr, ulong size) +void flush_cache(ulong start_addr, ulong size) { - } -void write_one_tlb( int index, u32 pagemask, u32 hi, u32 low0, u32 low1 ){ +void write_one_tlb(int index, u32 pagemask, u32 hi, u32 low0, u32 low1) +{ write_32bit_cp0_register(CP0_ENTRYLO0, low0); write_32bit_cp0_register(CP0_PAGEMASK, pagemask); write_32bit_cp0_register(CP0_ENTRYLO1, low1); |