diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2005-12-30 09:45:21 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2005-12-30 09:45:21 +0000 |
commit | 3c7d2c5ea9fed6b853b86213255356dcfeaa2a46 (patch) | |
tree | 78164bfe3071990412f4c6efdbbd1320a57901a4 /sys/dev/i2c/lm_i2c.c | |
parent | 2ef6b179a49244ff48f356625bf6d7344cbc0280 (diff) |
Initial W83791D support for lm(4).
ok krw@
Diffstat (limited to 'sys/dev/i2c/lm_i2c.c')
-rw-r--r-- | sys/dev/i2c/lm_i2c.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/dev/i2c/lm_i2c.c b/sys/dev/i2c/lm_i2c.c index 289e853ae21..548defc4971 100644 --- a/sys/dev/i2c/lm_i2c.c +++ b/sys/dev/i2c/lm_i2c.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lm_i2c.c,v 1.4 2005/12/29 16:08:03 kettenis Exp $ */ +/* $OpenBSD: lm_i2c.c,v 1.5 2005/12/30 09:45:20 kettenis Exp $ */ /* * Copyright (c) 2005 Mark Kettenis @@ -49,8 +49,7 @@ lm_i2c_match(struct device *parent, void *match, void *aux) if (strcmp(ia->ia_name, "as99127f") == 0 || strcmp(ia->ia_name, "w83783s") == 0 || strcmp(ia->ia_name, "w83791d") == 0 || - strcmp(ia->ia_name, "w83792d") == 0 || - strcmp(ia->ia_name, "w12345x") == 0) { + strcmp(ia->ia_name, "w83792d") == 0) { return (1); } /* |