-/* $OpenBSD: imxgpio.c,v 1.11 2016/08/06 18:12:13 patrick Exp $ */
+/* $OpenBSD: imxgpio.c,v 1.12 2017/06/22 11:34:51 tom Exp $ */
/*
* Copyright (c) 2007,2009 Dale Rahn <drahn@openbsd.org>
* Copyright (c) 2012-2013 Patrick Wildt <patrick@blueri.se>
reg &= (1 << pin);
val = (reg >> pin) & 1;
if (flags & GPIO_ACTIVE_LOW)
- val = !val;;
+ val = !val;
return val;
}
-/* $OpenBSD: mesh.c,v 1.32 2013/12/06 21:03:05 deraadt Exp $ */
+/* $OpenBSD: mesh.c,v 1.33 2017/06/22 11:34:51 tom Exp $ */
/* $NetBSD: mesh.c,v 1.1 1999/02/19 13:06:03 tsubai Exp $ */
/*-
void
mesh_scsi_cmd(struct scsi_xfer *xs)
{
- struct scsi_link *sc_link = xs->sc_link;;
+ struct scsi_link *sc_link = xs->sc_link;
struct mesh_softc *sc = sc_link->adapter_softc;
struct mesh_scb *scb;
u_int flags;
-/* $OpenBSD: shpcic.c,v 1.12 2010/12/04 17:06:32 miod Exp $ */
+/* $OpenBSD: shpcic.c,v 1.13 2017/06/22 11:34:51 tom Exp $ */
/* $NetBSD: shpcic.c,v 1.10 2005/12/24 20:07:32 perry Exp $ */
/*
sc->sc_membus_space.bus_io = 0;
sc->sc_iobus_space.bus_base = SH4_PCIC_IO; /* XXX */
sc->sc_iobus_space.bus_size = SH4_PCIC_IO_SIZE;
- sc->sc_iobus_space.bus_io = 1;;
+ sc->sc_iobus_space.bus_io = 1;
io_ex = extent_create("pciio", 0, 0xffffffff, M_DEVBUF, NULL, 0,
EX_NOWAIT | EX_FILLED);
-/* $OpenBSD: if_vlan.c,v 1.173 2017/05/31 05:14:51 dlg Exp $ */
+/* $OpenBSD: if_vlan.c,v 1.174 2017/06/22 11:34:51 tom Exp $ */
/*
* Copyright 1998 Massachusetts Institute of Technology
int
vlan_setlladdr(struct ifvlan *ifv, struct ifreq *ifr)
{
- struct ifnet *ifp = &ifv->ifv_if;;
+ struct ifnet *ifp = &ifv->ifv_if;
struct ifnet *ifp0;
uint8_t lladdr[ETHER_ADDR_LEN];
int flag;
-/* $OpenBSD: ip_carp.c,v 1.313 2017/06/19 17:58:49 bluhm Exp $ */
+/* $OpenBSD: ip_carp.c,v 1.314 2017/06/22 11:34:51 tom Exp $ */
/*
* Copyright (c) 2002 Michael Shalayeff. All rights reserved.
uint8_t *esrc;
eh = mtod(m, struct ether_header *);
- esrc = ((struct arpcom*)ifp->if_carpdev)->ac_enaddr;;
+ esrc = ((struct arpcom*)ifp->if_carpdev)->ac_enaddr;
memcpy(eh->ether_shost, esrc, sizeof(eh->ether_shost));
}