summaryrefslogtreecommitdiff
path: root/sys/dev/pci
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2010-10-27 20:48:28 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2010-10-27 20:48:28 +0000
commita8ef9a64c105b9c8c87ea83a801c7d08e2d6122d (patch)
tree99ccfb01ca74e32113291b5dc0129383eb53421e /sys/dev/pci
parent4c17c1daae5d0de6e22adfd7d3183beda096557a (diff)
fix double ;;
Diffstat (limited to 'sys/dev/pci')
-rw-r--r--sys/dev/pci/if_ix.c4
-rw-r--r--sys/dev/pci/qlireg.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/pci/if_ix.c b/sys/dev/pci/if_ix.c
index 585b506875f..c580c9163c7 100644
--- a/sys/dev/pci/if_ix.c
+++ b/sys/dev/pci/if_ix.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_ix.c,v 1.44 2010/08/27 08:24:53 deraadt Exp $ */
+/* $OpenBSD: if_ix.c,v 1.45 2010/10/27 20:48:27 deraadt Exp $ */
/******************************************************************************
@@ -3028,7 +3028,7 @@ ixgbe_configure_ivars(struct ix_softc *sc)
void
ixgbe_update_stats_counters(struct ix_softc *sc)
{
- struct ifnet *ifp = &sc->arpcom.ac_if;;
+ struct ifnet *ifp = &sc->arpcom.ac_if;
struct ixgbe_hw *hw = &sc->hw;
uint32_t missed_rx = 0, bprc, lxon, lxoff, total;
int i;
diff --git a/sys/dev/pci/qlireg.h b/sys/dev/pci/qlireg.h
index 1bae226d679..29d7b0f7c9e 100644
--- a/sys/dev/pci/qlireg.h
+++ b/sys/dev/pci/qlireg.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: qlireg.h,v 1.8 2007/09/29 16:03:43 marco Exp $ */
+/* $OpenBSD: qlireg.h,v 1.9 2010/10/27 20:48:27 deraadt Exp $ */
/*
* Copyright (c) 2007 Marco Peereboom <marco@peereboom.us>
* Copyright (c) 2007 David Collins <dave@davec.name>
@@ -603,7 +603,7 @@ struct qli_cb {
u_int8_t qcb_ipv6_flow_label[3];
u_int8_t qcb_ipv6_def_router_addr[16];
u_int8_t qcb_ipv6_vlan_tci[2];
- u_int8_t qcb_ipv6_link_local_addr_state;;
+ u_int8_t qcb_ipv6_link_local_addr_state;
#define QLI_QCB_IPV6_LLAS_UNCONFIGURED (0x00)
#define QLI_QCB_IPV6_LLAS_INVALID (0x01)
#define QLI_QCB_IPV6_LLAS_ACQUIRING (0x02)