* [PATCH]: move unused variable to right ifdef branch
@ 2003-03-27 2:53 Juan Quintela
0 siblings, 0 replies; only message in thread
From: Juan Quintela @ 2003-03-27 2:53 UTC (permalink / raw)
To: Ralf Baechle, mipslist
Hi
config1 was only usend inside the ifdef. Move definition there.
Once here, make things u32 instead of unsigned int.
Later, Juan.
build/arch/mips/mm/tlb-r4k.c | 9 +++++----
1 files changed, 5 insertions(+), 4 deletions(-)
diff -puN build/arch/mips/mm/tlb-r4k.c~move_unused_var_tlb-r4k.c build/arch/mips/mm/tlb-r4k.c
--- 24/build/arch/mips/mm/tlb-r4k.c~move_unused_var_tlb-r4k.c 2003-03-21 02:03:48.000000000 +0100
+++ 24-quintela/build/arch/mips/mm/tlb-r4k.c 2003-03-21 02:05:07.000000000 +0100
@@ -333,9 +333,8 @@ out:
static void __init probe_tlb(unsigned long config)
{
- unsigned int prid, config1;
+ u32 prid = read_c0_prid() & 0xff00;
- prid = read_c0_prid() & 0xff00;
if (prid == PRID_IMP_RM7000 || !(config & (1 << 31)))
/*
* Not a MIPS32 complianant CPU. Config 1 register not
@@ -345,11 +344,13 @@ static void __init probe_tlb(unsigned lo
return;
#if defined(CONFIG_CPU_MIPS32) || defined (CONFIG_CPU_MIPS64)
- config1 = read_c0_config1();
if (!((config >> 7) & 3))
panic("No MMU present");
- else
+ else {
+ u32 config1 = read_c0_config1();
+
mips_cpu.tlbsize = ((config1 >> 25) & 0x3f) + 1;
+ }
#endif
}
_
--
In theory, practice and theory are the same, but in practice they
are different -- Larry McVoy
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2003-03-27 2:55 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-03-27 2:53 [PATCH]: move unused variable to right ifdef branch Juan Quintela
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.