diff options
author | 2007-10-20 22:06:43 +0000 | |
---|---|---|
committer | 2007-10-20 22:06:43 +0000 | |
commit | 87303f1543983bf6d88cd34bdf1e3d2f5e73d474 (patch) | |
tree | 8e6f18cdd53a280347a05425a6cb534095b40be9 | |
parent | Ack IRQ *after* fetching IPI args. From NetBSD. (diff) | |
download | wireguard-openbsd-87303f1543983bf6d88cd34bdf1e3d2f5e73d474.tar.xz wireguard-openbsd-87303f1543983bf6d88cd34bdf1e3d2f5e73d474.zip |
_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); |