diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2012-12-08 12:51:35 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2012-12-08 12:51:35 +0000 |
commit | 9b9ea0f72f1ae53c8a14226e337739023eca5c16 (patch) | |
tree | d1ded471f3f872deef7d9b12d938e1ef8645c654 | |
parent | eb18afc7fafab1a66a107ccb41024012c59c9b49 (diff) |
Fix a comment now that PowerPC 970 are recognized, make it clear that
changing the frequency to a quarter mode is only supported by 970MP.
-rw-r--r-- | sys/arch/macppc/include/cpu.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/macppc/include/cpu.h b/sys/arch/macppc/include/cpu.h index fd7f61669b4..48f2f982425 100644 --- a/sys/arch/macppc/include/cpu.h +++ b/sys/arch/macppc/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.10 2011/05/25 07:42:15 mpi Exp $ */ +/* $OpenBSD: cpu.h,v 1.11 2012/12/08 12:51:34 mpi Exp $ */ /* $NetBSD: cpu.h,v 1.1 1996/09/30 16:34:21 ws Exp $ */ /* @@ -52,7 +52,7 @@ /* Frequency scaling */ #define FREQ_FULL 0 #define FREQ_HALF 1 -#define FREQ_QUARTER 2 /* Not supported on IBM 970FX */ +#define FREQ_QUARTER 2 /* Supported only on IBM 970MP */ extern u_int32_t ppc_curfreq; extern u_int32_t ppc_maxfreq; |