diff options
author | 2010-05-20 22:13:45 +0000 | |
---|---|---|
committer | 2010-05-20 22:13:45 +0000 | |
commit | 1340655df76b0dde844fbbed0e97bbb8334227e2 (patch) | |
tree | f63e14f66ed2ea59b1b4df79d5054c757fa8831a | |
parent | We have a copy of git_version.h in src so that we can build libperl (diff) | |
download | wireguard-openbsd-1340655df76b0dde844fbbed0e97bbb8334227e2.tar.xz wireguard-openbsd-1340655df76b0dde844fbbed0e97bbb8334227e2.zip |
Make fans run slower in Sun systems with tda controllers by bumping the
minimum and maximum system temperatures by 5 degrees. System runs
considerably quieter and people in the office have stopped complaining
about the noise now.
OK kettenis@
-rw-r--r-- | sys/arch/sparc64/dev/tda.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/sparc64/dev/tda.c b/sys/arch/sparc64/dev/tda.c index f856b971f85..49363a98c2f 100644 --- a/sys/arch/sparc64/dev/tda.c +++ b/sys/arch/sparc64/dev/tda.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tda.c,v 1.5 2010/04/20 20:49:34 deraadt Exp $ */ +/* $OpenBSD: tda.c,v 1.6 2010/05/20 22:13:45 edd Exp $ */ /* * Copyright (c) 2008 Robert Nagy <robert@openbsd.org> @@ -45,8 +45,8 @@ #define CPU_TEMP_MAX (67 * 1000000 + 273150000) #define CPU_TEMP_MIN (57 * 1000000 + 273150000) -#define SYS_TEMP_MAX (30 * 1000000 + 273150000) -#define SYS_TEMP_MIN (20 * 1000000 + 273150000) +#define SYS_TEMP_MAX (35 * 1000000 + 273150000) +#define SYS_TEMP_MIN (25 * 1000000 + 273150000) struct tda_softc { struct device sc_dev; |