diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-12-28 20:35:17 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-12-28 20:35:17 +0000 |
commit | 3cceb141f6f4db8dd977f96524eaa44a2fa24c31 (patch) | |
tree | 4934023e062fa854b887e9fa88341fb0b1b1a1c5 /sys/dev/i2c | |
parent | 19b655ad58e6ccfd48981c3b1b0d2d486b2b7048 (diff) |
ad7417 much like ad7418
Diffstat (limited to 'sys/dev/i2c')
-rw-r--r-- | sys/dev/i2c/ad741x.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/i2c/ad741x.c b/sys/dev/i2c/ad741x.c index 1c395999219..1d8ae1715bd 100644 --- a/sys/dev/i2c/ad741x.c +++ b/sys/dev/i2c/ad741x.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ad741x.c,v 1.4 2005/12/27 17:18:18 deraadt Exp $ */ +/* $OpenBSD: ad741x.c,v 1.5 2005/12/28 20:35:16 deraadt Exp $ */ /* * Copyright (c) 2005 Theo de Raadt @@ -70,7 +70,7 @@ adc_match(struct device *parent, void *match, void *aux) struct i2c_attach_args *ia = aux; if (strcmp(ia->ia_name, "ad7417") == 0 || - strcmp(ia->ia_name, "ad7418") == 0) /* XXX? */ + strcmp(ia->ia_name, "ad7418") == 0) return (1); return (0); } |