summaryrefslogtreecommitdiff
path: root/sys/dev/i2c/adm1025.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/i2c/adm1025.c')
-rw-r--r--sys/dev/i2c/adm1025.c12
1 files changed, 2 insertions, 10 deletions
diff --git a/sys/dev/i2c/adm1025.c b/sys/dev/i2c/adm1025.c
index e96abb8d60a..96d1b138e53 100644
--- a/sys/dev/i2c/adm1025.c
+++ b/sys/dev/i2c/adm1025.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: adm1025.c,v 1.19 2005/12/31 04:31:27 deraadt Exp $ */
+/* $OpenBSD: adm1025.c,v 1.20 2006/01/06 03:44:35 deraadt Exp $ */
/*
* Copyright (c) 2005 Theo de Raadt
@@ -85,16 +85,8 @@ admtm_match(struct device *parent, void *match, void *aux)
if (strcmp(ia->ia_name, "adm1025") == 0 ||
strcmp(ia->ia_name, "47m192") == 0 ||
- strcmp(ia->ia_name, "ne1619") == 0) {
- /*
- * should also ensure that
- * config & 0x80 == 0x00
- * status1 & 0xc0 == 0x00
- * status2 & 0xbc == 0x00
- * before accepting this to be for real
- */
+ strcmp(ia->ia_name, "ne1619") == 0)
return (1);
- }
return (0);
}