patch-2_6_7-vs1_9_1_12
[linux-2.6.git] / arch / m68k / math-emu / fp_log.c
index 8cda5be..87b4f01 100644 (file)
@@ -48,7 +48,7 @@ fp_fsqrt(struct fp_ext *dest, struct fp_ext *src)
 
        /*
         *               sqrt(m) * 2^(p)        , if e = 2*p
-        * sqrt(m*2^e) = 
+        * sqrt(m*2^e) =
         *               sqrt(2*m) * 2^(p)      , if e = 2*p + 1
         *
         * So we use the last bit of the exponent to decide wether to
@@ -80,7 +80,7 @@ fp_fsqrt(struct fp_ext *dest, struct fp_ext *src)
         * which has a null point on x = sqrt(r).
         *
         * It gives:
-        *      x' := x - f(x)/f'(x)
+        *      x' := x - f(x)/f'(x)
         *          = x - (x^2 -r)/(2*x)
         *          = x - (x - r/x)/2
         *          = (2*x - x + r/x)/2