diff options
author | Constantine A. Murenin <cnst@cvs.openbsd.org> | 2007-10-20 22:06:44 +0000 |
---|---|---|
committer | Constantine A. Murenin <cnst@cvs.openbsd.org> | 2007-10-20 22:06:44 +0000 |
commit | d2177d3f96289a06e7dcb0f1b6f3b6a08e7a9d66 (patch) | |
tree | 97e7523b93d68d450f2fa006f691938a37fd1d49 | |
parent | cd6135a2ca1bb702976a123597adee2f80d08440 (diff) |
_check prototypes are no longer used (replaced by i2c_scan.c); ok deraadt@
-rw-r--r-- | sys/dev/i2c/ad741x.c | 3 | ||||
-rw-r--r-- | sys/dev/i2c/maxim6690.c | 3 | ||||
-rw-r--r-- | sys/dev/i2c/pca9554.c | 3 |
3 files changed, 3 insertions, 6 deletions
diff --git a/sys/dev/i2c/ad741x.c b/sys/dev/i2c/ad741x.c index 75810de22ac..b9310191748 100644 --- a/sys/dev/i2c/ad741x.c +++ b/sys/dev/i2c/ad741x.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ad741x.c,v 1.12 2007/06/24 05:34:35 dlg Exp $ */ +/* $OpenBSD: ad741x.c,v 1.13 2007/10/20 22:06:43 cnst Exp $ */ /* * Copyright (c) 2005 Theo de Raadt @@ -54,7 +54,6 @@ struct adc_softc { int adc_match(struct device *, void *, void *); void adc_attach(struct device *, struct device *, void *); -int adc_check(struct i2c_attach_args *, u_int8_t *, u_int8_t *); void adc_refresh(void *); struct cfattach adc_ca = { diff --git a/sys/dev/i2c/maxim6690.c b/sys/dev/i2c/maxim6690.c index 085aaff18cc..cf9261b1b5e 100644 --- a/sys/dev/i2c/maxim6690.c +++ b/sys/dev/i2c/maxim6690.c @@ -1,4 +1,4 @@ -/* $OpenBSD: maxim6690.c,v 1.15 2007/06/24 05:34:35 dlg Exp $ */ +/* $OpenBSD: maxim6690.c,v 1.16 2007/10/20 22:06:43 cnst Exp $ */ /* * Copyright (c) 2005 Theo de Raadt @@ -60,7 +60,6 @@ struct maxtmp_softc { int maxtmp_match(struct device *, void *, void *); void maxtmp_attach(struct device *, struct device *, void *); -int maxtmp_check(struct i2c_attach_args *, u_int8_t *, u_int8_t *); void maxtmp_refresh(void *); struct cfattach maxtmp_ca = { diff --git a/sys/dev/i2c/pca9554.c b/sys/dev/i2c/pca9554.c index 62f00cc6750..a64bbb3e75d 100644 --- a/sys/dev/i2c/pca9554.c +++ b/sys/dev/i2c/pca9554.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pca9554.c,v 1.14 2007/07/31 21:34:39 cnst Exp $ */ +/* $OpenBSD: pca9554.c,v 1.15 2007/10/20 22:06:43 cnst Exp $ */ /* * Copyright (c) 2005 Theo de Raadt @@ -51,7 +51,6 @@ struct pcagpio_softc { int pcagpio_match(struct device *, void *, void *); void pcagpio_attach(struct device *, struct device *, void *); -int pcagpio_check(struct i2c_attach_args *, u_int8_t *, u_int8_t *); void pcagpio_refresh(void *); int pcagpio_gpio_pin_read(void *, int); |