diff options
author | 2007-10-24 20:13:19 +0000 | |
---|---|---|
committer | 2007-10-24 20:13:19 +0000 | |
commit | 31739a07351b61d866f4d28ab773f494ad66dfc9 (patch) | |
tree | b82ca217e3065fa51766e5fab76eb7513d7bf903 | |
parent | Add support for power supply temperature sensors on the E450. (diff) | |
download | wireguard-openbsd-31739a07351b61d866f4d28ab773f494ad66dfc9.tar.xz wireguard-openbsd-31739a07351b61d866f4d28ab773f494ad66dfc9.zip |
Enable power supply temperature sensors on the E450.
-rw-r--r-- | sys/arch/sparc64/dev/pcfiic_ebus.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/arch/sparc64/dev/pcfiic_ebus.c b/sys/arch/sparc64/dev/pcfiic_ebus.c index 91690708171..ec747441f2f 100644 --- a/sys/arch/sparc64/dev/pcfiic_ebus.c +++ b/sys/arch/sparc64/dev/pcfiic_ebus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pcfiic_ebus.c,v 1.9 2007/10/22 22:39:10 kettenis Exp $ */ +/* $OpenBSD: pcfiic_ebus.c,v 1.10 2007/10/24 20:13:19 kettenis Exp $ */ /* * Copyright (c) 2006 David Gwynne <dlg@openbsd.org> @@ -183,7 +183,6 @@ envctrl_scan(struct device *self, struct i2cbus_attach_args *iba, void *aux) ia.ia_tag = iba->iba_tag; ia.ia_cookie = aux; -#ifdef notyet /* Power supply 1 temperature. */ ia.ia_addr = 0x48; ia.ia_name = "ecadc"; @@ -198,7 +197,6 @@ envctrl_scan(struct device *self, struct i2cbus_attach_args *iba, void *aux) ia.ia_addr = 0x4a; ia.ia_name = "ecadc"; config_found(self, &ia, iic_print); -#endif /* Ambient tempterature. */ ia.ia_addr = 0x4d; |