diff options
author | Kevin Lo <kevlo@cvs.openbsd.org> | 2005-02-03 00:37:49 +0000 |
---|---|---|
committer | Kevin Lo <kevlo@cvs.openbsd.org> | 2005-02-03 00:37:49 +0000 |
commit | c0a52dccfd01e415c5b43e9a3028993e67d63001 (patch) | |
tree | 1d0b5bfbf181f529cbf4b40c7ac6b0594aa0a3f5 /sys/dev/ic/fxp.c | |
parent | 07ecc9e018b5ac5646e14295a97a6d4d08e6ae35 (diff) |
make prototype match function for fxp_mdi_read.
ok millert@
CVS ----------------------------------------------------------------------
Diffstat (limited to 'sys/dev/ic/fxp.c')
-rw-r--r-- | sys/dev/ic/fxp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/fxp.c b/sys/dev/ic/fxp.c index faaa8a746b5..08dafba56fe 100644 --- a/sys/dev/ic/fxp.c +++ b/sys/dev/ic/fxp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fxp.c,v 1.66 2005/01/15 18:48:12 brad Exp $ */ +/* $OpenBSD: fxp.c,v 1.67 2005/02/03 00:37:48 kevlo Exp $ */ /* $NetBSD: if_fxp.c,v 1.2 1997/06/05 02:01:55 thorpej Exp $ */ /* @@ -163,7 +163,7 @@ void fxp_load_ucode(struct fxp_softc *); void fxp_stop(struct fxp_softc *, int); void fxp_watchdog(struct ifnet *); int fxp_add_rfabuf(struct fxp_softc *, struct mbuf *); -int fxp_mdi_read(struct device *, int, int); +volatile int fxp_mdi_read(struct device *, int, int); void fxp_mdi_write(struct device *, int, int, int); void fxp_autosize_eeprom(struct fxp_softc *); void fxp_statchg(struct device *); |