diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2006-07-20 21:23:43 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2006-07-20 21:23:43 +0000 |
commit | 61fdda0499c51c1c365f89653cb85b6900962b7d (patch) | |
tree | 346ab0ec36f24d7601871c4225826419b3e7dfb8 | |
parent | 3c1bb48f3e96b9286e5087f766cc4528496f46df (diff) |
Add support for Analog Devices ADM1023 (and ADM1021A).
-rw-r--r-- | sys/dev/i2c/adm1021.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/i2c/adm1021.c b/sys/dev/i2c/adm1021.c index a0edd51765e..bc1540c20c0 100644 --- a/sys/dev/i2c/adm1021.c +++ b/sys/dev/i2c/adm1021.c @@ -1,4 +1,4 @@ -/* $OpenBSD: adm1021.c,v 1.23 2006/07/15 19:39:55 kettenis Exp $ */ +/* $OpenBSD: adm1021.c,v 1.24 2006/07/20 21:23:42 kettenis Exp $ */ /* * Copyright (c) 2005 Theo de Raadt @@ -67,6 +67,7 @@ admtemp_match(struct device *parent, void *match, void *aux) struct i2c_attach_args *ia = aux; if (strcmp(ia->ia_name, "adm1021") == 0 || + strcmp(ia->ia_name, "adm1023") == 0 || strcmp(ia->ia_name, "adm1032") == 0 || strcmp(ia->ia_name, "g781") == 0 || strcmp(ia->ia_name, "g781-1") == 0 || |