summaryrefslogtreecommitdiff
path: root/sys/dev/pci
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2003-08-06 21:08:09 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2003-08-06 21:08:09 +0000
commit8f4be4c9fc053e06d8170659c9bde356ada1a655 (patch)
treed116498a9604b21bf16d82850fcf1726939a4f6a /sys/dev/pci
parent9293e104f0b834487ffef8344f12e9dc93c0abd0 (diff)
Remove some double semicolons (hmm, do two semis equal a maxi?).
I've skipped the GNU stuff for now. From Patrick Latifi.
Diffstat (limited to 'sys/dev/pci')
-rw-r--r--sys/dev/pci/auich.c6
-rw-r--r--sys/dev/pci/gdt_pci.c4
-rw-r--r--sys/dev/pci/if_de.c4
-rw-r--r--sys/dev/pci/if_lge.c4
-rw-r--r--sys/dev/pci/if_nge.c4
5 files changed, 11 insertions, 11 deletions
diff --git a/sys/dev/pci/auich.c b/sys/dev/pci/auich.c
index 2531d74f733..4f1c5d75e69 100644
--- a/sys/dev/pci/auich.c
+++ b/sys/dev/pci/auich.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: auich.c,v 1.35 2003/06/12 18:08:09 mickey Exp $ */
+/* $OpenBSD: auich.c,v 1.36 2003/08/06 21:08:06 millert Exp $ */
/*
* Copyright (c) 2000,2001 Michael Shalayeff
@@ -163,9 +163,9 @@ struct auich_softc {
struct auich_dmalist *dmalist_pcmo, *dmap_pcmo,
dmasto_pcmo[AUICH_DMALIST_MAX+1];
struct auich_dmalist *dmalist_pcmi, *dmap_pcmi,
- dmasto_pcmi[AUICH_DMALIST_MAX+1];;
+ dmasto_pcmi[AUICH_DMALIST_MAX+1];
struct auich_dmalist *dmalist_mici, *dmap_mici,
- dmasto_mici[AUICH_DMALIST_MAX+1];;
+ dmasto_mici[AUICH_DMALIST_MAX+1];
/* i/o buffer pointers */
u_int32_t pcmo_start, pcmo_p, pcmo_end;
int pcmo_blksize, pcmo_fifoe;
diff --git a/sys/dev/pci/gdt_pci.c b/sys/dev/pci/gdt_pci.c
index d393e058a6e..5cb1b64367d 100644
--- a/sys/dev/pci/gdt_pci.c
+++ b/sys/dev/pci/gdt_pci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: gdt_pci.c,v 1.18 2003/06/03 20:49:29 deraadt Exp $ */
+/* $OpenBSD: gdt_pci.c,v 1.19 2003/08/06 21:08:06 millert Exp $ */
/*
* Copyright (c) 1999, 2000 Niklas Hallqvist. All rights reserved.
@@ -301,7 +301,7 @@ gdt_pci_attach(parent, self, aux)
#if 0
/* disable board interrupts, deinit services */
gdth_writeb(0xff, &dp6_ptr->io.irqdel);
- gdth_writeb(0x00, &dp6_ptr->io.irqen);;
+ gdth_writeb(0x00, &dp6_ptr->io.irqen);
gdth_writeb(0x00, &dp6_ptr->u.ic.S_Status);
gdth_writeb(0x00, &dp6_ptr->u.ic.Cmd_Index);
diff --git a/sys/dev/pci/if_de.c b/sys/dev/pci/if_de.c
index 34f5e02ba85..04f16a66cac 100644
--- a/sys/dev/pci/if_de.c
+++ b/sys/dev/pci/if_de.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_de.c,v 1.57 2003/04/06 18:54:20 ho Exp $ */
+/* $OpenBSD: if_de.c,v 1.58 2003/08/06 21:08:06 millert Exp $ */
/* $NetBSD: if_de.c,v 1.45 1997/06/09 00:34:18 thorpej Exp $ */
/*-
@@ -2370,7 +2370,7 @@ tulip_identify_asante_nic(
mi->mi_gpr_length = 0;
mi->mi_gpr_offset = 0;
mi->mi_reset_length = 0;
- mi->mi_reset_offset = 0;;
+ mi->mi_reset_offset = 0;
mi->mi_phyaddr = TULIP_MII_NOPHY;
for (idx = 20; idx > 0 && mi->mi_phyaddr == TULIP_MII_NOPHY; idx--) {
diff --git a/sys/dev/pci/if_lge.c b/sys/dev/pci/if_lge.c
index 5d9fb4f1258..ff35bc2abbb 100644
--- a/sys/dev/pci/if_lge.c
+++ b/sys/dev/pci/if_lge.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_lge.c,v 1.11 2002/11/26 06:01:28 nate Exp $ */
+/* $OpenBSD: if_lge.c,v 1.12 2003/08/06 21:08:07 millert Exp $ */
/*
* Copyright (c) 2001 Wind River Systems
* Copyright (c) 1997, 1998, 1999, 2000, 2001
@@ -512,7 +512,7 @@ void lge_attach(parent, self, aux)
if (!(command & PCI_COMMAND_IO_ENABLE)) {
printf("%s: failed to enable I/O ports!\n",
sc->sc_dv.dv_xname);
- error = ENXIO;;
+ error = ENXIO;
goto fail;
}
/*
diff --git a/sys/dev/pci/if_nge.c b/sys/dev/pci/if_nge.c
index f68d46b2597..31ae9666c44 100644
--- a/sys/dev/pci/if_nge.c
+++ b/sys/dev/pci/if_nge.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_nge.c,v 1.25 2003/01/15 06:31:24 art Exp $ */
+/* $OpenBSD: if_nge.c,v 1.26 2003/08/06 21:08:07 millert Exp $ */
/*
* Copyright (c) 2001 Wind River Systems
* Copyright (c) 1997, 1998, 1999, 2000, 2001
@@ -806,7 +806,7 @@ nge_attach(parent, self, aux)
if (!(command & PCI_COMMAND_IO_ENABLE)) {
printf("%s: failed to enable I/O ports!\n",
sc->sc_dv.dv_xname);
- error = ENXIO;;
+ error = ENXIO;
goto fail;
}
/*