vserver 1.9.5.x5
[linux-2.6.git] / arch / mips / mm / sc-rm7k.c
index 9796a22..4e92f93 100644 (file)
@@ -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 -