Messages in this thread Patch in this message |  | | Date | Fri, 26 Oct 2001 22:13:27 -0400 | From | Tom Vier <> | Subject | 2.4.13-ac2 alpha missing ')' |
| |
fixes typo
-- Tom Vier <tmv5@home.com> DSA Key id 0x27371A2C diff -urN linux-2.4.13-ac2/arch/alpha/kernel/time.c linux-2.4.13-ac2-patched/arch/alpha/kernel/time.c --- linux-2.4.13-ac2/arch/alpha/kernel/time.c Fri Oct 26 21:21:26 2001 +++ linux-2.4.13-ac2-patched/arch/alpha/kernel/time.c Fri Oct 26 22:02:59 2001 @@ -209,7 +209,7 @@ return cc; if (cc < (cpu_hz[index].min - FREQ_DEVIATION) - || cc > (cpu_hz[index].max + FREQ_DEVIATION) + || cc > (cpu_hz[index].max + FREQ_DEVIATION)) return 0; return cc; |  |