diff options
author | Joshua Kinard <kumba@gentoo.org> | 2015-06-02 16:55:22 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2015-06-06 10:21:09 +0200 |
commit | 755af33b00e99a323df534617a10aea05cba1830 (patch) | |
tree | c4cfd78ae098e65db71337f8bd65d877bd373b32 /arch/mips/mm/c-r4k.c | |
parent | 90b712ddabb40c49ca4f68bab07e27aa34c8d2a3 (diff) | |
download | blackbird-obmc-linux-755af33b00e99a323df534617a10aea05cba1830.tar.gz blackbird-obmc-linux-755af33b00e99a323df534617a10aea05cba1830.zip |
MIPS: c-r4k: Fix typo in probe_scache()
Fixes a typo in arch/mips/mm/c-r4k.c's probe_scache().
Signed-off-by: Joshua Kinard <kumba@gentoo.org>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/mm/c-r4k.c')
-rw-r--r-- | arch/mips/mm/c-r4k.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/mm/c-r4k.c b/arch/mips/mm/c-r4k.c index 0dbb65a51ce5..2e03ab173591 100644 --- a/arch/mips/mm/c-r4k.c +++ b/arch/mips/mm/c-r4k.c @@ -1372,7 +1372,7 @@ static int probe_scache(void) scache_size = addr; c->scache.linesz = 16 << ((config & R4K_CONF_SB) >> 22); c->scache.ways = 1; - c->dcache.waybit = 0; /* does not matter */ + c->scache.waybit = 0; /* does not matter */ return 1; } |