X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=arch%2Fmips%2Fmm%2Fsc-rm7k.c;h=4e92f931aaba220920b77acfc2aa4635be729478;hb=6a77f38946aaee1cd85eeec6cf4229b204c15071;hp=9796a227998215ab17b9eb05cc7197e8db491895;hpb=87fc8d1bb10cd459024a742c6a10961fefcef18f;p=linux-2.6.git diff --git a/arch/mips/mm/sc-rm7k.c b/arch/mips/mm/sc-rm7k.c index 9796a2279..4e92f931a 100644 --- a/arch/mips/mm/sc-rm7k.c +++ b/arch/mips/mm/sc-rm7k.c @@ -96,13 +96,13 @@ static void rm7k_sc_inv(unsigned long addr, unsigned long size) } /* - * This function is executed in the uncached segment KSEG1. + * This function is executed in the uncached segment CKSEG1. * It must not touch the stack, because the stack pointer still points - * into KSEG0. + * into CKSEG0. * * Three options: * - Write it in assembly and guarantee that we don't use the stack. - * - Disable caching for KSEG0 before calling it. + * - Disable caching for CKSEG0 before calling it. * - Pray that GCC doesn't randomly start using the stack. * * This being Linux, we obviously take the least sane of those options -