summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1997-07-01 00:22:51 +0000
committerbde <bde@FreeBSD.org>1997-07-01 00:22:51 +0000
commitaebdde56b3bf58e14ed7c668fd7b2844acaaf389 (patch)
tree8292d565b3e50024f5d73b1baece4e0ce6fd8d15 /sys
parentb3ce2e3adeca223584bbadd65001b1de830a2b18 (diff)
downloadFreeBSD-src-aebdde56b3bf58e14ed7c668fd7b2844acaaf389.zip
FreeBSD-src-aebdde56b3bf58e14ed7c668fd7b2844acaaf389.tar.gz
Don't depend on gcc's feature of permitting labels that aren't followed
by a statement.
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/dgb/dgb.c6
-rw-r--r--sys/dev/ex/if_ex.c2
-rw-r--r--sys/dev/rc/rc.c2
-rw-r--r--sys/gnu/i386/isa/dgb.c6
-rw-r--r--sys/i386/isa/if_ex.c2
-rw-r--r--sys/i386/isa/rc.c2
-rw-r--r--sys/i386/isa/wd.c5
-rw-r--r--sys/netipx/ipx_outputfl.c4
-rw-r--r--sys/scsi/worm.c4
9 files changed, 17 insertions, 16 deletions
diff --git a/sys/dev/dgb/dgb.c b/sys/dev/dgb/dgb.c
index 75b6513..e0b1808 100644
--- a/sys/dev/dgb/dgb.c
+++ b/sys/dev/dgb/dgb.c
@@ -1,5 +1,5 @@
/*-
- * dgb.c $Id: dgb.c,v 1.25 1997/03/24 11:23:26 bde Exp $
+ * dgb.c $Id: dgb.c,v 1.26 1997/06/14 15:19:48 bde Exp $
*
* Digiboard driver.
*
@@ -1414,7 +1414,7 @@ dgbpoll(unit_c)
ttwakeup(tp);
setwin(sc,0);
}
- end_of_data:
+ end_of_data: ;
}
if(event & MODEMCHG_IND) {
@@ -1533,7 +1533,7 @@ dgbpoll(unit_c)
setwin(sc,0);
}
}
- end_of_buffer:
+ end_of_buffer: ;
}
bc->idata=1; /* require event on incoming data */
diff --git a/sys/dev/ex/if_ex.c b/sys/dev/ex/if_ex.c
index 5b38afb..ecd942c 100644
--- a/sys/dev/ex/if_ex.c
+++ b/sys/dev/ex/if_ex.c
@@ -734,7 +734,7 @@ void ex_rx_intr(int unit)
else
ifp->if_ierrors++;
outw(iobase + HOST_ADDR_REG, sc->rx_head);
- rx_another:
+ rx_another: ;
}
if (sc->rx_head < sc->rx_lower_limit + 2)
outw(iobase + RCV_STOP_REG, sc->rx_upper_limit);
diff --git a/sys/dev/rc/rc.c b/sys/dev/rc/rc.c
index c88b95e..ea064ea 100644
--- a/sys/dev/rc/rc.c
+++ b/sys/dev/rc/rc.c
@@ -666,7 +666,7 @@ repeat:
(tptr[0] |
rc_rcsrt[tptr[INPUT_FLAGS_SHIFT] & 0xF], tp);
}
-done1:
+done1: ;
}
if (rc->rc_flags & RC_DOXXFER) {
disable_intr();
diff --git a/sys/gnu/i386/isa/dgb.c b/sys/gnu/i386/isa/dgb.c
index 75b6513..e0b1808 100644
--- a/sys/gnu/i386/isa/dgb.c
+++ b/sys/gnu/i386/isa/dgb.c
@@ -1,5 +1,5 @@
/*-
- * dgb.c $Id: dgb.c,v 1.25 1997/03/24 11:23:26 bde Exp $
+ * dgb.c $Id: dgb.c,v 1.26 1997/06/14 15:19:48 bde Exp $
*
* Digiboard driver.
*
@@ -1414,7 +1414,7 @@ dgbpoll(unit_c)
ttwakeup(tp);
setwin(sc,0);
}
- end_of_data:
+ end_of_data: ;
}
if(event & MODEMCHG_IND) {
@@ -1533,7 +1533,7 @@ dgbpoll(unit_c)
setwin(sc,0);
}
}
- end_of_buffer:
+ end_of_buffer: ;
}
bc->idata=1; /* require event on incoming data */
diff --git a/sys/i386/isa/if_ex.c b/sys/i386/isa/if_ex.c
index 5b38afb..ecd942c 100644
--- a/sys/i386/isa/if_ex.c
+++ b/sys/i386/isa/if_ex.c
@@ -734,7 +734,7 @@ void ex_rx_intr(int unit)
else
ifp->if_ierrors++;
outw(iobase + HOST_ADDR_REG, sc->rx_head);
- rx_another:
+ rx_another: ;
}
if (sc->rx_head < sc->rx_lower_limit + 2)
outw(iobase + RCV_STOP_REG, sc->rx_upper_limit);
diff --git a/sys/i386/isa/rc.c b/sys/i386/isa/rc.c
index c88b95e..ea064ea 100644
--- a/sys/i386/isa/rc.c
+++ b/sys/i386/isa/rc.c
@@ -666,7 +666,7 @@ repeat:
(tptr[0] |
rc_rcsrt[tptr[INPUT_FLAGS_SHIFT] & 0xF], tp);
}
-done1:
+done1: ;
}
if (rc->rc_flags & RC_DOXXFER) {
disable_intr();
diff --git a/sys/i386/isa/wd.c b/sys/i386/isa/wd.c
index 1a8b7e1..4d05cf2 100644
--- a/sys/i386/isa/wd.c
+++ b/sys/i386/isa/wd.c
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)wd.c 7.2 (Berkeley) 5/9/91
- * $Id: wd.c,v 1.129 1997/04/28 19:26:16 se Exp $
+ * $Id: wd.c,v 1.130 1997/05/27 18:28:08 se Exp $
*/
/* TODO:
@@ -521,7 +521,8 @@ wdattach(struct isa_device *dvp)
#else
atapi_attach (dvp->id_unit, unit, dvp->id_iobase);
#endif
-next: }
+next: ;
+ }
#endif
/*
* Discard any interrupts generated by wdgetctlr(). wdflushirq()
diff --git a/sys/netipx/ipx_outputfl.c b/sys/netipx/ipx_outputfl.c
index 91f0945..004a6de 100644
--- a/sys/netipx/ipx_outputfl.c
+++ b/sys/netipx/ipx_outputfl.c
@@ -33,7 +33,7 @@
*
* @(#)ipx_outputfl.c
*
- * $Id: ipx_outputfl.c,v 1.7 1997/05/10 09:58:53 jhay Exp $
+ * $Id: ipx_outputfl.c,v 1.8 1997/06/26 19:35:51 jhay Exp $
*/
#include <sys/param.h>
@@ -257,7 +257,7 @@ ipx_output_type20(m)
(struct sockaddr *)&dst, NULL);
/* XXX ipxstat.ipxs_localout++; */
}
-skip_this:
+skip_this: ;
}
bad:
diff --git a/sys/scsi/worm.c b/sys/scsi/worm.c
index e6a2957..9c254e6 100644
--- a/sys/scsi/worm.c
+++ b/sys/scsi/worm.c
@@ -43,7 +43,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: worm.c,v 1.40 1997/05/28 21:25:49 jmz Exp $
+ * $Id: worm.c,v 1.41 1997/06/02 20:05:37 jmz Exp $
*/
#include "opt_bounce.h"
@@ -408,7 +408,7 @@ wormstart(unit, flags)
}
}
} /* go back and see if we can cram more work in.. */
-badnews:
+badnews: ;
}
static void
OpenPOWER on IntegriCloud