double ;;. xhci one found by geoffhill
authorderaadt <deraadt@openbsd.org>
Thu, 22 Jun 2017 02:44:37 +0000 (02:44 +0000)
committerderaadt <deraadt@openbsd.org>
Thu, 22 Jun 2017 02:44:37 +0000 (02:44 +0000)
sys/dev/fdt/sximmc.c
sys/dev/pci/if_ix.c
sys/dev/usb/if_ure.c
sys/dev/usb/xhci.c

index 39d3396..008ea70 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: sximmc.c,v 1.1 2017/01/21 08:26:49 patrick Exp $ */
+/* $OpenBSD: sximmc.c,v 1.2 2017/06/22 02:44:37 deraadt Exp $ */
 /* $NetBSD: awin_mmc.c,v 1.23 2015/11/14 10:32:40 bouyer Exp $ */
 
 /*-
@@ -611,7 +611,7 @@ sximmc_card_detect(sdmmc_chipset_handle_t sch)
        val = gpio_controller_get_pin(sc->sc_gpio);
 
        inverted = (OF_getproplen(sc->sc_node, "cd-inverted") == 0);
-       return inverted ? !val : val;;
+       return inverted ? !val : val;
 }
 
 int
index b46163e..339ba2b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: if_ix.c,v 1.151 2017/04/24 13:20:46 jsg Exp $ */
+/*     $OpenBSD: if_ix.c,v 1.152 2017/06/22 02:44:37 deraadt Exp $     */
 
 /******************************************************************************
 
@@ -3417,7 +3417,7 @@ ixgbe_update_stats_counters(struct ix_softc *sc)
 void
 ixgbe_print_hw_stats(struct ix_softc * sc)
 {
-       struct ifnet   *ifp = &sc->arpcom.ac_if;;
+       struct ifnet   *ifp = &sc->arpcom.ac_if;
 
        printf("%s: missed pkts %llu, rx len errs %llu, crc errs %llu, "
            "dropped pkts %lu, watchdog timeouts %ld, "
index e03cddc..2b5ebd7 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: if_ure.c,v 1.6 2017/04/18 00:18:51 jmatthew Exp $     */
+/*     $OpenBSD: if_ure.c,v 1.7 2017/06/22 02:44:37 deraadt Exp $      */
 /*-
  * Copyright (c) 2015-2016 Kevin Lo <kevlo@FreeBSD.org>
  * All rights reserved.
@@ -978,7 +978,7 @@ ure_init_fifo(struct ure_softc *sc)
 int
 ure_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
 {
-       struct ure_softc        *sc = ifp->if_softc;;
+       struct ure_softc        *sc = ifp->if_softc;
        struct ifreq            *ifr = (struct ifreq *)data;
        int                     s, error = 0;
 
index c2c2313..e05023f 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: xhci.c,v 1.72 2017/03/10 11:18:48 mpi Exp $ */
+/* $OpenBSD: xhci.c,v 1.73 2017/06/22 02:44:37 deraadt Exp $ */
 
 /*
  * Copyright (c) 2014-2015 Martin Pieuchot
@@ -225,7 +225,7 @@ usbd_dma_contig_alloc(struct usbd_bus *bus, struct usbd_dma_info *dma,
        error = bus_dmamap_create(dma->tag, size, 1, size, boundary,
            BUS_DMA_NOWAIT, &dma->map);
        if (error != 0)
-               return (error);;
+               return (error);
 
        error = bus_dmamem_alloc(dma->tag, size, alignment, boundary, &dma->seg,
            1, &dma->nsegs, BUS_DMA_NOWAIT | BUS_DMA_ZERO);