From 5320eda28a762cbd0bb083d79b596a54051bc8b8 Mon Sep 17 00:00:00 2001 From: Hans-Joerg Hoexer Date: Thu, 3 Feb 2005 14:46:43 +0000 Subject: unbreak by killing volatile from fxp_mdi_read(). No binary change. ok mickey --- sys/dev/ic/fxp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/dev') diff --git a/sys/dev/ic/fxp.c b/sys/dev/ic/fxp.c index 08dafba56fe..ce1918e52fe 100644 --- a/sys/dev/ic/fxp.c +++ b/sys/dev/ic/fxp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fxp.c,v 1.67 2005/02/03 00:37:48 kevlo Exp $ */ +/* $OpenBSD: fxp.c,v 1.68 2005/02/03 14:46:42 hshoexer 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 *); -volatile int fxp_mdi_read(struct device *, int, int); +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 *); @@ -1603,7 +1603,7 @@ fxp_add_rfabuf(sc, oldm) return (m == oldm); } -volatile int +int fxp_mdi_read(self, phy, reg) struct device *self; int phy; -- cgit v1.2.3