diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2005-06-29 04:25:11 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2005-06-29 04:25:11 +0000 |
commit | 6e472d5df1959e9ed453814b18662dd53f6e1053 (patch) | |
tree | 342b979fbf5f23856465577ff4368c62c6e3da5a | |
parent | 32cf128730ee8f4bd32781c5e415018c1df675c7 (diff) |
volatile here
-rw-r--r-- | sys/dev/pci/if_bge.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_bge.c b/sys/dev/pci/if_bge.c index 89b48c4d295..3c4833b28a4 100644 --- a/sys/dev/pci/if_bge.c +++ b/sys/dev/pci/if_bge.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_bge.c,v 1.68 2005/06/29 04:03:42 brad Exp $ */ +/* $OpenBSD: if_bge.c,v 1.69 2005/06/29 04:25:10 brad Exp $ */ /* * Copyright (c) 2001 Wind River Systems @@ -1215,7 +1215,7 @@ int bge_blockinit(sc) struct bge_softc *sc; { - struct bge_rcb *rcb; + volatile struct bge_rcb *rcb; struct ifnet *ifp = &sc->arpcom.ac_if; vaddr_t rcb_addr; int i; |