correct indentation
authorjsg <jsg@openbsd.org>
Sat, 13 Apr 2024 23:44:11 +0000 (23:44 +0000)
committerjsg <jsg@openbsd.org>
Sat, 13 Apr 2024 23:44:11 +0000 (23:44 +0000)
no functional change, found by smatch warnings
ok miod@ bluhm@

42 files changed:
sys/arch/hppa/dev/astro.c
sys/arch/macppc/macppc/ofw_machdep.c
sys/arch/sparc64/dev/pcons.c
sys/arch/sparc64/sparc64/pmap.c
sys/dev/acpi/acpitoshiba.c
sys/dev/acpi/acpivout.c
sys/dev/acpi/dsdt.c
sys/dev/ic/adw.c
sys/dev/ic/adwlib.c
sys/dev/ic/an.c
sys/dev/ic/bwi.c
sys/dev/ic/ncr53c9x.c
sys/dev/ic/siop.c
sys/dev/ic/siop_common.c
sys/dev/isa/ad1848.c
sys/dev/mii/brgphy.c
sys/dev/pci/arc.c
sys/dev/pci/auvia.c
sys/dev/pci/if_em_hw.c
sys/dev/pci/if_iwm.c
sys/dev/pci/if_iwx.c
sys/dev/pci/if_ngbe.c
sys/dev/pci/if_qwx_pci.c
sys/dev/pci/if_rge.c
sys/dev/pci/if_sis.c
sys/dev/pci/ixgb_hw.c
sys/dev/pci/maestro.c
sys/dev/pci/pciide.c
sys/dev/usb/if_umb.c
sys/dev/usb/if_ure.c
sys/dev/wscons/wsdisplay_compat_usl.c
sys/isofs/udf/udf_subr.c
sys/kern/kern_acct.c
sys/net/pf_osfp.c
sys/net80211/ieee80211_input.c
sys/netinet/tcp_input.c
sys/nfs/nfs_vnops.c
sys/ufs/ext2fs/ext2fs_bmap.c
sys/ufs/ext2fs/ext2fs_vnops.c
sys/ufs/ffs/ffs_balloc.c
sys/uvm/uvm_addr.c
sys/uvm/uvm_aobj.c

index e346080..c61ae0f 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: astro.c,v 1.18 2022/03/13 08:04:38 mpi Exp $  */
+/*     $OpenBSD: astro.c,v 1.19 2024/04/13 23:44:11 jsg Exp $  */
 
 /*
  * Copyright (c) 2007 Mark Kettenis
@@ -407,8 +407,8 @@ iommu_iomap_load_map(struct astro_softc *sc, bus_dmamap_t map, int flags)
                     pa < paend; pa += PAGE_SIZE, va += PAGE_SIZE) {
                        err = iommu_iomap_insert_page(ims, va, pa);
                        if (err) {
-                               printf("iomap insert error: %d for "
-                                    "va 0x%lx pa 0x%lx\n", err, va, pa);
+                               printf("iomap insert error: %d for "
+                                   "va 0x%lx pa 0x%lx\n", err, va, pa);
                                bus_dmamap_unload(sc->sc_dmat, map);
                                iommu_iomap_clear_pages(ims);
                        }
index 7e7dec7..4151f8d 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ofw_machdep.c,v 1.64 2021/03/11 11:16:59 jsg Exp $    */
+/*     $OpenBSD: ofw_machdep.c,v 1.65 2024/04/13 23:44:11 jsg Exp $    */
 /*     $NetBSD: ofw_machdep.c,v 1.1 1996/09/30 16:34:50 ws Exp $       */
 
 /*
@@ -388,7 +388,7 @@ ofw_find_keyboard(void)
                 * use the builtin ADB one for console, the USB one is
                 * certainly a HID device.
                 */
-                if (strncmp(iname, "PowerBook", 9) == 0)
+               if (strncmp(iname, "PowerBook", 9) == 0)
                        ofw_have_kbd = OFW_HAVE_ADBKBD;
                else
                        ofw_have_kbd = OFW_HAVE_USBKBD;
index f212a30..e37b845 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: pcons.c,v 1.27 2022/10/16 01:22:39 jsg Exp $  */
+/*     $OpenBSD: pcons.c,v 1.28 2024/04/13 23:44:11 jsg Exp $  */
 /*     $NetBSD: pcons.c,v 1.7 2001/05/02 10:32:20 scw Exp $    */
 
 /*-
@@ -183,8 +183,8 @@ pconsattach(struct device *parent, struct device *self, void *aux)
        else {
                if (OF_getprop(OF_instance_to_package(stdin), "compatible",
                    buffer, sizeof(buffer)) != -1 &&
-                  strncmp("usb", buffer, 3) == 0)
-               sc->sc_wsdisplay = 1;
+                   strncmp("usb", buffer, 3) == 0)
+                       sc->sc_wsdisplay = 1;
        }
 
        if (sc->sc_wsdisplay != 0) {
index b2dbea6..7a319ef 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: pmap.c,v 1.119 2024/04/11 18:58:44 miod Exp $ */
+/*     $OpenBSD: pmap.c,v 1.120 2024/04/13 23:44:11 jsg Exp $  */
 /*     $NetBSD: pmap.c,v 1.107 2001/08/31 16:47:41 eeh Exp $   */
 /*
  * 
@@ -510,9 +510,9 @@ pmap_bootstrap(u_long kernelstart, u_long kernelend, u_int maxctx, u_int numcpus
 
                        /* And the rest of the virtual page. */
                        if (prom_claim_virt(newkv, szdiff) != newkv)
-                       prom_printf("pmap_bootstrap: could not claim "
-                               "virtual dseg extension "
-                               "at size %lx\r\n", newkv, szdiff);
+                               prom_printf("pmap_bootstrap: could not claim "
+                                   "virtual dseg extension "
+                                   "at size %lx\r\n", newkv, szdiff);
 
                        /* Make sure all 4MB are mapped */
                        prom_map_phys(newkp, szdiff, newkv, -1);
index c8ca3f1..a1385c9 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: acpitoshiba.c,v 1.16 2022/04/06 18:59:27 naddy Exp $ */
+/* $OpenBSD: acpitoshiba.c,v 1.17 2024/04/13 23:44:11 jsg Exp $ */
 /*-
  * Copyright (c) 2003 Hiroyuki Aizu <aizu@navi.org>
  * All rights reserved.
@@ -202,19 +202,18 @@ toshiba_update_brightness(void *arg0, int arg1)
 int
 toshiba_match(struct device *parent, void *match, void *aux)
 {
-      struct acpi_attach_args *aa = aux;
-      struct cfdata          *cf = match;
+       struct acpi_attach_args *aa = aux;
+       struct cfdata         *cf = match;
 
-        if (acpi_matchhids(aa, acpitoshiba_hids, cf->cf_driver->cd_name))
-                return (1);
+       if (acpi_matchhids(aa, acpitoshiba_hids, cf->cf_driver->cd_name))
+               return (1);
 
        if (aa->aaa_name == NULL ||
-          strcmp(aa->aaa_name, cf->cf_driver->cd_name) != 0 ||
-          aa->aaa_table != NULL)
-             return (0);
-
-      return (1);
+           strcmp(aa->aaa_name, cf->cf_driver->cd_name) != 0 ||
+           aa->aaa_table != NULL)
+               return (0);
 
+       return (1);
 }
 
 int
index db383b4..53b5816 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: acpivout.c,v 1.25 2022/04/06 18:59:27 naddy Exp $     */
+/*     $OpenBSD: acpivout.c,v 1.26 2024/04/13 23:44:11 jsg Exp $       */
 /*
  * Copyright (c) 2009 Paul Irofti <paul@irofti.net>
  *
@@ -259,7 +259,7 @@ acpivout_get_bcl(struct acpivout_softc *sc)
                value = aml_val2int(res.v_package[i + 2]);
                for (j = i; j > 0 && sc->sc_bcl[j - 1] > value; j--)
                        sc->sc_bcl[j] = sc->sc_bcl[j - 1];
-                sc->sc_bcl[j] = value;
+               sc->sc_bcl[j] = value;
        }
 
 err:
index 24ebf44..654a37c 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: dsdt.c,v 1.265 2024/01/08 19:52:29 kettenis Exp $ */
+/* $OpenBSD: dsdt.c,v 1.266 2024/04/13 23:44:11 jsg Exp $ */
 /*
  * Copyright (c) 2005 Jordan Hargrave <jordan@openbsd.org>
  *
@@ -4249,7 +4249,7 @@ aml_parse(struct aml_scope *scope, int ret_type, const char *stype)
                /* Name: Nt */
                rv = opargs[0];
                aml_freevalue(rv);
-                       aml_copyvalue(rv, opargs[1]);
+               aml_copyvalue(rv, opargs[1]);
                break;
        case AMLOP_ALIAS:
                /* Alias: nN */
index 5b76639..e91d2b2 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: adw.c,v 1.69 2022/04/16 19:19:58 naddy Exp $ */
+/*     $OpenBSD: adw.c,v 1.70 2024/04/13 23:44:11 jsg Exp $ */
 /* $NetBSD: adw.c,v 1.23 2000/05/27 18:24:50 dante Exp $        */
 
 /*
@@ -449,7 +449,7 @@ adw_attach(ADW_SOFTC *sc)
        /*
         * Zero's the freeze_device status
         */
-        bzero(sc->sc_freeze_dev, sizeof(sc->sc_freeze_dev));
+       bzero(sc->sc_freeze_dev, sizeof(sc->sc_freeze_dev));
 
        /*
         * Initialize the adapter
index 3fe5eb3..7cb9833 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: adwlib.c,v 1.29 2022/08/29 06:08:03 jsg Exp $ */
+/*     $OpenBSD: adwlib.c,v 1.30 2024/04/13 23:44:11 jsg Exp $ */
 /* $NetBSD: adwlib.c,v 1.20 2000/07/04 04:17:03 itojun Exp $        */
 
 /*
@@ -315,9 +315,9 @@ AdwInitFromEEPROM(ADW_SOFTC *sc)
                                         */
                                        lsw_msb |= (ADW_EEPROM_INTAB >> 8)
                                                         & 0xFF;
-                                }
-                                eep_config.cfg_lsw &= 0x00FF;
-                                eep_config.cfg_lsw |= lsw_msb << 8;
+                               }
+                               eep_config.cfg_lsw &= 0x00FF;
+                               eep_config.cfg_lsw |= lsw_msb << 8;
                        }
                        break;
                }
index a834c72..29cdc1a 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: an.c,v 1.79 2022/04/21 21:03:02 stsp Exp $    */
+/*     $OpenBSD: an.c,v 1.80 2024/04/13 23:44:11 jsg Exp $     */
 /*     $NetBSD: an.c,v 1.34 2005/06/20 02:49:18 atatat Exp $   */
 /*
  * Copyright (c) 1997, 1998, 1999
@@ -905,7 +905,7 @@ an_ioctl(struct ifnet *ifp, u_long command, caddr_t data)
                if ((error = suser(curproc)) != 0)
                        break;
                error = an_set_nwkey(sc, (struct ieee80211_nwkey *)data);
-                       break;
+               break;
        case SIOCG80211NWKEY:
                error = an_get_nwkey(sc, (struct ieee80211_nwkey *)data);
                break;
index b97f31e..68b798a 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: bwi.c,v 1.134 2023/11/10 15:51:20 bluhm Exp $ */
+/*     $OpenBSD: bwi.c,v 1.135 2024/04/13 23:44:11 jsg Exp $   */
 
 /*
  * Copyright (c) 2007 The DragonFly Project.  All rights reserved.
@@ -6400,7 +6400,7 @@ bwi_led_attach(struct bwi_softc *sc)
                if (led->l_act == BWI_LED_ACT_BLINK_SLOW ||
                    led->l_act == BWI_LED_ACT_BLINK_POLL ||
                    led->l_act == BWI_LED_ACT_BLINK) {
-                   led->l_flags |= BWI_LED_F_BLINK;
+                       led->l_flags |= BWI_LED_F_BLINK;
                        if (led->l_act == BWI_LED_ACT_BLINK_POLL)
                                led->l_flags |= BWI_LED_F_POLLABLE;
                        else if (led->l_act == BWI_LED_ACT_BLINK_SLOW)
index 5997122..dd829c8 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ncr53c9x.c,v 1.81 2024/04/03 18:41:38 miod Exp $      */
+/*     $OpenBSD: ncr53c9x.c,v 1.82 2024/04/13 23:44:11 jsg Exp $       */
 /*     $NetBSD: ncr53c9x.c,v 1.56 2000/11/30 14:41:46 thorpej Exp $    */
 
 /*
@@ -2456,7 +2456,7 @@ printf("<<RESELECT CONT'd>>");
                if (sc->sc_state == NCR_IDLE) {
                        printf("%s: stray interrupt\n",
                            sc->sc_dev.dv_xname);
-                               return (0);
+                       return (0);
                }
                break;
 
index 7b45e65..f78ae70 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: siop.c,v 1.89 2022/04/16 19:19:59 naddy Exp $ */
+/*     $OpenBSD: siop.c,v 1.90 2024/04/13 23:44:11 jsg Exp $ */
 /*     $NetBSD: siop.c,v 1.79 2005/11/18 23:10:32 bouyer Exp $ */
 
 /*
@@ -579,7 +579,7 @@ siop_intr(void *v)
                         * unexpected disconnect. Usually the target signals
                         * a fatal condition this way. Attempt to get sense.
                         */
-                        if (siop_cmd) {
+                       if (siop_cmd) {
                                siop_cmd->cmd_tables->status =
                                    siop_htoc32(&sc->sc_c, SCSI_CHECK);
                                goto end;
index de83744..acc29c0 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: siop_common.c,v 1.44 2022/01/09 05:42:42 jsg Exp $ */
+/*     $OpenBSD: siop_common.c,v 1.45 2024/04/13 23:44:11 jsg Exp $ */
 /*     $NetBSD: siop_common.c,v 1.37 2005/02/27 00:27:02 perry Exp $   */
 
 /*
@@ -281,7 +281,7 @@ siop_setuptables(struct siop_common_cmd *siop_cmd)
                if ((*targ_flags & TARF_DT) &&
                    (sc->mode == STEST4_MODE_LVD)) {
                        sc->targets[target]->status = TARST_PPR_NEG;
-                        siop_ppr_msg(siop_cmd, msgoffset, sc->dt_minsync,
+                       siop_ppr_msg(siop_cmd, msgoffset, sc->dt_minsync,
                            sc->maxoff);
                } else if (*targ_flags & TARF_WIDE) {
                        sc->targets[target]->status = TARST_WIDE_NEG;
index c322a38..bf4637a 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ad1848.c,v 1.48 2022/10/28 14:55:46 kn Exp $  */
+/*     $OpenBSD: ad1848.c,v 1.49 2024/04/13 23:44:11 jsg Exp $ */
 /*     $NetBSD: ad1848.c,v 1.45 1998/01/30 02:02:38 augustss Exp $     */
 
 /*
@@ -1244,19 +1244,20 @@ ad1848_set_speed(struct ad1848_softc *sc, u_long *argp)
        if (arg > speed_table[n - 1].speed)
                selected = n - 1;
 
-       for (i = 1 /*really*/ ; selected == -1 && i < n; i++)
+       for (i = 1 /*really*/ ; selected == -1 && i < n; i++) {
                if (speed_table[i].speed == arg)
                        selected = i;
                else if (speed_table[i].speed > arg) {
                        int diff1, diff2;
 
-               diff1 = arg - speed_table[i - 1].speed;
-               diff2 = speed_table[i].speed - arg;
+                       diff1 = arg - speed_table[i - 1].speed;
+                       diff2 = speed_table[i].speed - arg;
 
-               if (diff1 < diff2)
-                       selected = i - 1;
-               else
-                       selected = i;
+                       if (diff1 < diff2)
+                               selected = i - 1;
+                       else
+                               selected = i;
+               }
        }
 
        if (selected == -1) {
index fbf7be2..78f7e18 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: brgphy.c,v 1.108 2022/04/06 18:59:29 naddy Exp $      */
+/*     $OpenBSD: brgphy.c,v 1.109 2024/04/13 23:44:11 jsg Exp $        */
 
 /*
  * Copyright (c) 2000
@@ -836,7 +836,7 @@ brgphy_reset_bge(struct mii_softc *sc)
        if (bge_sc->bge_phy_flags & BGE_PHY_BER_BUG)
                brgphy_ber_bug(sc);
        else if (bge_sc->bge_phy_flags & BGE_PHY_JITTER_BUG) {
-           PHY_WRITE(sc, BRGPHY_MII_AUXCTL, 0x0c00);
+               PHY_WRITE(sc, BRGPHY_MII_AUXCTL, 0x0c00);
                PHY_WRITE(sc, BRGPHY_MII_DSP_ADDR_REG, 0x000a);
 
                if (bge_sc->bge_phy_flags & BGE_PHY_ADJUST_TRIM) {
@@ -925,7 +925,7 @@ brgphy_reset_bnx(struct mii_softc *sc)
                        PHY_WRITE(sc, BRGPHY_5708S_PG5_TXACTL3,
                            bnx_sc->bnx_port_hw_cfg &
                            BNX_PORT_HW_CFG_CFG_TXCTL3_MASK);
-                           PHY_WRITE(sc, BRGPHY_5708S_BLOCK_ADDR,
+                       PHY_WRITE(sc, BRGPHY_5708S_BLOCK_ADDR,
                            BRGPHY_5708S_DIG_PG0);
                }
        } else if (BNX_CHIP_NUM(bnx_sc) == BNX_CHIP_NUM_5709 &&
index 726b2e9..718831f 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: arc.c,v 1.124 2022/09/06 15:22:11 kn Exp $ */
+/*     $OpenBSD: arc.c,v 1.125 2024/04/13 23:44:11 jsg Exp $ */
 
 /*
  * Copyright (c) 2006 David Gwynne <dlg@openbsd.org>
@@ -1409,18 +1409,18 @@ arc_enable_all_intr(struct arc_softc *sc)
                int_mask &= ~(ARC_RA_INTRMASK_POSTQUEUE |
                        ARC_RA_INTRMASK_DOORBELL | ARC_RA_INTRMASK_MSG0);
                arc_write(sc, ARC_RA_INTRMASK, int_mask);
-           break;
+               break;
        case ARC_HBA_TYPE_C:
                int_mask = arc_read(sc, ARC_RC_INTR_MASK);
                int_mask &= ~(ARC_RC_INTR_MASK_POSTQUEUE |
                        ARC_RC_INTR_MASK_DOORBELL | ARC_RC_INTR_MASK_UTILITY_A);
                arc_write(sc, ARC_RC_INTR_MASK, int_mask);
-           break;
+               break;
        case ARC_HBA_TYPE_D:
                int_mask = arc_read(sc, ARC_RD_INTR_ENABLE);
                int_mask |= ARC_RD_INTR_ENABLE_ALL;
                arc_write(sc, ARC_RD_INTR_ENABLE, int_mask);
-           break;
+               break;
        }
 }
 
index 40c8776..ed1f596 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: auvia.c,v 1.66 2022/10/26 20:19:08 kn Exp $ */
+/*     $OpenBSD: auvia.c,v 1.67 2024/04/13 23:44:11 jsg Exp $ */
 /*     $NetBSD: auvia.c,v 1.28 2002/11/04 16:38:49 kent Exp $  */
 
 /*-
@@ -611,7 +611,7 @@ auvia_set_params(void *addr, int setmode, int usemode,
                                if (p->channels == 6
                                    && codec->vtbl->set_rate(codec, reg,
                                    &p->sample_rate))
-                               return (EINVAL);
+                                       return (EINVAL);
                        }
                }
 
index 481ea95..54b2e20 100644 (file)
@@ -31,7 +31,7 @@
 
 *******************************************************************************/
 
-/* $OpenBSD: if_em_hw.c,v 1.119 2023/12/03 00:19:25 jsg Exp $ */
+/* $OpenBSD: if_em_hw.c,v 1.120 2024/04/13 23:44:11 jsg Exp $ */
 /*
  * if_em_hw.c Shared functions for accessing and configuring the MAC
  */
@@ -6432,9 +6432,9 @@ em_init_eeprom_params(struct em_hw *hw)
        case em_pch2lan:
        case em_pch_lpt:
                {
-               int32_t         i = 0;
-               uint32_t        flash_size = 
-                   E1000_READ_ICH_FLASH_REG(hw, ICH_FLASH_GFPREG);
+                       int32_t         i = 0;
+                       uint32_t        flash_size = 
+                           E1000_READ_ICH_FLASH_REG(hw, ICH_FLASH_GFPREG);
                        eeprom->type = em_eeprom_ich8;
                        eeprom->use_eerd = FALSE;
                        eeprom->use_eewr = FALSE;
index ce04cea..f299e47 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: if_iwm.c,v 1.414 2024/02/16 11:44:52 stsp Exp $       */
+/*     $OpenBSD: if_iwm.c,v 1.415 2024/04/13 23:44:11 jsg Exp $        */
 
 /*
  * Copyright (c) 2014, 2016 genua gmbh <info@genua.de>
@@ -8169,7 +8169,7 @@ iwm_rval2ridx(int rval)
                        break;
        }
 
-       return ridx;
+       return ridx;
 }
 
 void
index a2ed6b9..3a4810b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: if_iwx.c,v 1.182 2024/02/26 18:00:09 stsp Exp $       */
+/*     $OpenBSD: if_iwx.c,v 1.183 2024/04/13 23:44:11 jsg Exp $        */
 
 /*
  * Copyright (c) 2014, 2016 genua gmbh <info@genua.de>
@@ -786,7 +786,7 @@ iwx_alloc_fw_monitor(struct iwx_softc *sc, uint8_t max_power)
        }
 
        if (max_power > 26) {
-                DPRINTF(("%s: External buffer size for monitor is too big %d, "
+               DPRINTF(("%s: External buffer size for monitor is too big %d, "
                     "check the FW TLV\n", DEVNAME(sc), max_power));
                return 0;
        }
@@ -7211,7 +7211,7 @@ iwx_rval2ridx(int rval)
                        break;
        }
 
-       return ridx;
+       return ridx;
 }
 
 void
@@ -9831,7 +9831,7 @@ iwx_rx_pkt(struct iwx_softc *sc, struct iwx_rx_data *data, struct mbuf_list *ml)
                         * For v5 and above, we can check the version, for older
                         * versions we need to check the size.
                         */
-                        if (iwx_lookup_notif_ver(sc, IWX_LEGACY_GROUP,
+                       if (iwx_lookup_notif_ver(sc, IWX_LEGACY_GROUP,
                            IWX_ALIVE) == 6) {
                                SYNC_RESP_STRUCT(resp6, pkt);
                                if (iwx_rx_packet_payload_len(pkt) !=
@@ -10880,7 +10880,7 @@ iwx_find_device_cfg(struct iwx_softc *sc)
        cores = IWX_SUBDEVICE_CORES(sdev_id);
 
        for (i = nitems(iwx_dev_info_table) - 1; i >= 0; i--) {
-                const struct iwx_dev_info *dev_info = &iwx_dev_info_table[i];
+               const struct iwx_dev_info *dev_info = &iwx_dev_info_table[i];
 
                if (dev_info->device != (uint16_t)IWX_CFG_ANY &&
                    dev_info->device != sc->sc_pid)
index ce35036..5483380 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: if_ngbe.c,v 1.3 2024/04/12 19:27:43 jan Exp $ */
+/*     $OpenBSD: if_ngbe.c,v 1.4 2024/04/13 23:44:11 jsg Exp $ */
 
 /*
  * Copyright (c) 2015-2017 Beijing WangXun Technology Co., Ltd.
@@ -2952,7 +2952,7 @@ ngbe_host_interface_command(struct ngbe_softc *sc, uint32_t *buffer,
 
        if (length == 0 || length > NGBE_HI_MAX_BLOCK_BYTE_LENGTH) {
                printf("%s: buffer length failure\n", DEVNAME(sc));
-                       return EINVAL;
+               return EINVAL;
        }
 
        if (hw->mac.ops.acquire_swfw_sync(sc, NGBE_MNG_SWFW_SYNC_SW_MB))
@@ -3706,7 +3706,7 @@ ngbe_reset_hw(struct ngbe_softc *sc)
         * mng is using it.  If link is down or the flag to force full link
         * reset is set, then perform link reset.
         */
-        if (hw->force_full_reset) {
+       if (hw->force_full_reset) {
                rst_delay = (NGBE_READ_REG(hw, NGBE_MIS_RST_ST) &
                    NGBE_MIS_RST_ST_RST_INIT) >> NGBE_MIS_RST_ST_RST_INI_SHIFT;
                if (hw->reset_type == NGBE_SW_RESET) {
@@ -4528,9 +4528,9 @@ ngbe_update_mc_addr_list(struct ngbe_hw *hw, uint8_t *mc_addr_list,
        if (clear)
                memset(&hw->mac.mta_shadow, 0, sizeof(hw->mac.mta_shadow));
 
-        /* Update mta_shadow */
-        for (i = 0; i < mc_addr_count; i++)
-               ngbe_set_mta(hw, next(hw, &mc_addr_list, &vmdq));
+       /* Update mta_shadow */
+       for (i = 0; i < mc_addr_count; i++)
+               ngbe_set_mta(hw, next(hw, &mc_addr_list, &vmdq));
 
        /* Enable mta */
        for (i = 0; i < hw->mac.mcft_size; i++)
index 46c20d8..6e27e34 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: if_qwx_pci.c,v 1.14 2024/02/22 09:15:34 stsp Exp $    */
+/*     $OpenBSD: if_qwx_pci.c,v 1.15 2024/04/13 23:44:11 jsg Exp $     */
 
 /*
  * Copyright 2023 Stefan Sperling <stsp@openbsd.org>
@@ -2901,7 +2901,7 @@ qwx_mhi_start(struct qwx_pci_softc *psc)
 #endif
 
        /* Transition to primary runtime. */
-        if (MHI_IN_PBL(ee)) {
+       if (MHI_IN_PBL(ee)) {
                ret = qwx_mhi_fw_load_handler(psc);
                if (ret)
                        return ret;
index 08aecae..07513ad 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: if_rge.c,v 1.23 2023/12/22 05:28:14 kevlo Exp $       */
+/*     $OpenBSD: if_rge.c,v 1.24 2024/04/13 23:44:11 jsg Exp $ */
 
 /*
  * Copyright (c) 2019, 2020, 2023 Kevin Lo <kevlo@openbsd.org>
@@ -1250,7 +1250,7 @@ rge_rxeof(struct rge_queues *q)
                         * If this is part of a multi-fragment packet,
                         * discard all the pieces.
                         */
-                        if (q->q_rx.rge_head != NULL) {
+                       if (q->q_rx.rge_head != NULL) {
                                m_freem(q->q_rx.rge_head);
                                q->q_rx.rge_head = q->q_rx.rge_tail = NULL;
                        }
index 7c658f7..22d3a20 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: if_sis.c,v 1.143 2023/11/10 15:51:20 bluhm Exp $ */
+/*     $OpenBSD: if_sis.c,v 1.144 2024/04/13 23:44:11 jsg Exp $ */
 /*
  * Copyright (c) 1997, 1998, 1999
  *     Bill Paul <wpaul@ctr.columbia.edu>.  All rights reserved.
@@ -1791,7 +1791,7 @@ sis_init(void *xsc)
         * This resolves an issue with tons of errors in AcceptPerfectMatch
         * (non-IFF_PROMISC) mode.
         */
-        if (sc->sis_type == SIS_TYPE_83815 && sc->sis_srr <= NS_SRR_15D) {
+       if (sc->sis_type == SIS_TYPE_83815 && sc->sis_srr <= NS_SRR_15D) {
                CSR_WRITE_4(sc, NS_PHY_PAGE, 0x0001);
                CSR_WRITE_4(sc, NS_PHY_CR, 0x189C);
                /* set val for c2 */
index c65f357..2f9a5ca 100644 (file)
@@ -31,7 +31,7 @@
 
 *******************************************************************************/
 
-/* $OpenBSD: ixgb_hw.c,v 1.9 2022/01/09 05:42:56 jsg Exp $ */
+/* $OpenBSD: ixgb_hw.c,v 1.10 2024/04/13 23:44:11 jsg Exp $ */
 
 /* ixgb_hw.c
  * Shared functions for accessing and configuring the adapter
@@ -83,14 +83,14 @@ ixgb_mac_reset(struct ixgb_hw *hw)
 {
        uint32_t ctrl_reg;
 
-    ctrl_reg =  IXGB_CTRL0_RST |
-                IXGB_CTRL0_SDP3_DIR |   /* All pins are Output=1 */
-                IXGB_CTRL0_SDP2_DIR |
-                IXGB_CTRL0_SDP1_DIR |
-                IXGB_CTRL0_SDP0_DIR |
-                IXGB_CTRL0_SDP3     |   /* Initial value 1101   */
-                IXGB_CTRL0_SDP2     |
-                IXGB_CTRL0_SDP0;
+       ctrl_reg =  IXGB_CTRL0_RST |
+           IXGB_CTRL0_SDP3_DIR |   /* All pins are Output=1 */
+           IXGB_CTRL0_SDP2_DIR |
+           IXGB_CTRL0_SDP1_DIR |
+           IXGB_CTRL0_SDP0_DIR |
+           IXGB_CTRL0_SDP3     |   /* Initial value 1101   */
+           IXGB_CTRL0_SDP2     |
+           IXGB_CTRL0_SDP0;
 
 #ifdef HP_ZX1
        /* Workaround for 82597EX reset errata */
index bbd0a3b..f75e75d 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: maestro.c,v 1.50 2022/10/28 15:09:46 kn Exp $ */
+/*     $OpenBSD: maestro.c,v 1.51 2024/04/13 23:44:11 jsg Exp $        */
 /* $FreeBSD: /c/ncvs/src/sys/dev/sound/pci/maestro.c,v 1.3 2000/11/21 12:22:11 julian Exp $ */
 /*
  * FreeBSD's ESS Agogo/Maestro driver 
@@ -900,7 +900,7 @@ maestro_set_speed(struct maestro_channel *ch, u_long *prate)
        } else {
                /* compute 16 bits fixed point value of speed/48000,
                 * being careful not to overflow */
-                ch->dv = (((ch->speed % 48000) << 16U) + 24000) / 48000
+               ch->dv = (((ch->speed % 48000) << 16U) + 24000) / 48000
                    + ((ch->speed / 48000) << 16U);
                /* And this is the real rate obtained */
                ch->speed = (ch->dv >> 16U) * 48000 + 
index 53af79c..4f65dc9 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: pciide.c,v 1.363 2022/03/11 18:00:51 mpi Exp $        */
+/*     $OpenBSD: pciide.c,v 1.364 2024/04/13 23:44:11 jsg Exp $        */
 /*     $NetBSD: pciide.c,v 1.127 2001/08/03 01:31:08 tsutsui Exp $     */
 
 /*
@@ -2939,8 +2939,8 @@ piix_setup_channel(struct channel_softc *chp)
            (drvp[1].drive_flags & DRIVE_DMA)) {
                mode[0] = mode[1] =
                    min(drvp[0].DMA_mode, drvp[1].DMA_mode);
-                   drvp[0].DMA_mode = mode[0];
-                   drvp[1].DMA_mode = mode[1];
+               drvp[0].DMA_mode = mode[0];
+               drvp[1].DMA_mode = mode[1];
                goto ok;
        }
        /*
@@ -4127,7 +4127,7 @@ cmd680_channel_map(struct pci_attach_args *pa, struct pciide_softc *sc,
                printf("%s %s: "
                    "cannot allocate channel queue",
                    sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
-                   return;
+               return;
        }
 
        /* XXX */
@@ -7972,9 +7972,9 @@ acard_setup_channel(struct channel_softc *chp)
                                    acard_act_pio[drvp->PIO_mode],
                                    acard_rec_pio[drvp->PIO_mode]);
                        }
-               pci_conf_write(sc->sc_pc, sc->sc_tag, ATP8x0_CTRL,
-                   pci_conf_read(sc->sc_pc, sc->sc_tag, ATP8x0_CTRL)
-                   | ATP8x0_CTRL_EN(channel));
+                       pci_conf_write(sc->sc_pc, sc->sc_tag, ATP8x0_CTRL,
+                           pci_conf_read(sc->sc_pc, sc->sc_tag, ATP8x0_CTRL) |
+                           ATP8x0_CTRL_EN(channel));
                }
        }
 
index 0d0c2c4..fc3a61c 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: if_umb.c,v 1.56 2023/10/24 09:13:22 jmatthew Exp $ */
+/*     $OpenBSD: if_umb.c,v 1.57 2024/04/13 23:44:11 jsg Exp $ */
 
 /*
  * Copyright (c) 2016 genua mbH
@@ -3135,7 +3135,7 @@ umb_intr(struct usbd_xfer *xfer, void *priv, usbd_status status)
        if (total_len < UCDC_NOTIFICATION_LENGTH) {
                DPRINTF("%s: short notification (%d<%d)\n", DEVNAM(sc),
                    total_len, UCDC_NOTIFICATION_LENGTH);
-                   return;
+               return;
        }
        if (sc->sc_intr_msg.bmRequestType != UCDC_NOTIFICATION) {
                DPRINTF("%s: unexpected notification (type=0x%02x)\n",
index e26fb58..3fb897f 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: if_ure.c,v 1.33 2023/09/09 14:23:37 kevlo Exp $       */
+/*     $OpenBSD: if_ure.c,v 1.34 2024/04/13 23:44:11 jsg Exp $ */
 /*-
  * Copyright (c) 2015, 2016, 2019 Kevin Lo <kevlo@openbsd.org>
  * Copyright (c) 2020 Jonathon Fletcher <jonathon.fletcher@gmail.com>
@@ -2078,7 +2078,7 @@ ure_rxeof(struct usbd_xfer *xfer, void *priv, usbd_status status)
                if (rxvlan & URE_RXPKT_VLAN_TAG) {
                        m->m_pkthdr.ether_vtag =
                            swap16(rxvlan & URE_RXPKT_VLAN_DATA);
-                        m->m_flags |= M_VLANTAG;
+                       m->m_flags |= M_VLANTAG;
                }
 #endif
 
index 7398e8f..3802a83 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: wsdisplay_compat_usl.c,v 1.33 2020/09/03 15:30:17 kettenis Exp $ */
+/* $OpenBSD: wsdisplay_compat_usl.c,v 1.34 2024/04/13 23:44:11 jsg Exp $ */
 /* $NetBSD: wsdisplay_compat_usl.c,v 1.12 2000/03/23 07:01:47 thorpej Exp $ */
 
 /*
@@ -440,9 +440,8 @@ wsdisplay_usl_ioctl2(struct wsdisplay_softc *sc, struct wsscreen *scr,
 #define PCVT_SYSBEEPF  1193182
                        if (d >> 16) {
                                bd.which = WSKBD_BELL_DOPERIOD;
-                       bd.period = d >> 16; /* ms */
-                       }
-                       else
+                               bd.period = d >> 16; /* ms */
+                       } else
                                bd.which = 0;
                        if (d & 0xffff) {
                                bd.which |= WSKBD_BELL_DOPITCH;
index e708208..2377e69 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: udf_subr.c,v 1.26 2022/09/01 13:45:26 krw Exp $       */
+/*     $OpenBSD: udf_subr.c,v 1.27 2024/04/13 23:44:11 jsg Exp $       */
 
 /*
  * Copyright (c) 2006, Miodrag Vallat
@@ -201,7 +201,7 @@ udf_vat_get(struct umount *ump, uint32_t lb)
        up->u_vatlen = (letoh64(up->u_fentry->inf_len) - 36) >> 2;
 
        ump->um_vat = malloc(sizeof(struct unode), M_UDFMOUNT, M_WAITOK);
-       *ump->um_vat = *up;
+       *ump->um_vat = *up;
 
        ump->um_flags &= ~UDF_MNT_FIND_VAT;
        ump->um_flags |=  UDF_MNT_USES_VAT;
index 590bed7..1f56705 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: kern_acct.c,v 1.47 2022/08/14 01:58:27 jsg Exp $      */
+/*     $OpenBSD: kern_acct.c,v 1.48 2024/04/13 23:44:11 jsg Exp $      */
 /*     $NetBSD: kern_acct.c,v 1.42 1996/02/04 02:15:12 christos Exp $  */
 
 /*-
@@ -270,7 +270,7 @@ encode_comp_t(u_long s, u_long ns)
        s += ns / (1000000000 / AHZ);   /* Maximize precision. */
 
        while (s > MAXFRACT) {
-       rnd = s & (1 << (EXPSIZE - 1)); /* Round up? */
+               rnd = s & (1 << (EXPSIZE - 1)); /* Round up? */
                s >>= EXPSIZE;          /* Base 8 exponent == 3 bit shift. */
                exp++;
        }
index c2a406c..cbcf2c2 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: pf_osfp.c,v 1.47 2023/10/10 11:25:31 bluhm Exp $ */
+/*     $OpenBSD: pf_osfp.c,v 1.48 2024/04/13 23:44:11 jsg Exp $ */
 
 /*
  * Copyright (c) 2003 Mike Frantzen <frantzen@w4g.org>
@@ -382,7 +382,7 @@ pf_osfp_add(struct pf_osfp_ioctl *fpioc)
        if ((fp = pf_osfp_find_exact(&fpadd))) {
                struct pf_osfp_entry *tentry;
 
-                SLIST_FOREACH(tentry, &fp->fp_oses, fp_entry) {
+               SLIST_FOREACH(tentry, &fp->fp_oses, fp_entry) {
                        if (PF_OSFP_ENTRY_EQ(tentry, &fpioc->fp_os)) {
                                PF_UNLOCK();
                                pool_put(&pf_osfp_entry_pl, entry);
index 44f1189..cdc40bc 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ieee80211_input.c,v 1.251 2024/03/15 17:45:36 stsp Exp $      */
+/*     $OpenBSD: ieee80211_input.c,v 1.252 2024/04/13 23:44:11 jsg Exp $       */
 /*     $NetBSD: ieee80211_input.c,v 1.24 2004/05/31 11:12:24 dyoung Exp $      */
 
 /*-
@@ -1901,7 +1901,7 @@ ieee80211_recv_probe_resp(struct ieee80211com *ic, struct mbuf *m,
                 * This probe response indicates the AP is still serving us
                 * so don't allow ieee80211_watchdog() to move us into SCAN.
                 */
-                if ((ic->ic_flags & IEEE80211_F_BGSCAN) == 0)
+               if ((ic->ic_flags & IEEE80211_F_BGSCAN) == 0)
                        ic->ic_mgt_timer = 0;
        }
        /*
index 9320e24..8a64d59 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: tcp_input.c,v 1.403 2024/04/12 16:07:09 bluhm Exp $   */
+/*     $OpenBSD: tcp_input.c,v 1.404 2024/04/13 23:44:11 jsg Exp $     */
 /*     $NetBSD: tcp_input.c,v 1.23 1996/02/13 23:43:44 christos Exp $  */
 
 /*
@@ -1078,12 +1078,13 @@ findpcb:
         * Receive window is amount of space in rcv queue,
         * but not less than advertised window.
         */
-       { int win;
+       {
+               int win;
 
-       win = sbspace(so, &so->so_rcv);
-       if (win < 0)
-               win = 0;
-       tp->rcv_wnd = imax(win, (int)(tp->rcv_adv - tp->rcv_nxt));
+               win = sbspace(so, &so->so_rcv);
+               if (win < 0)
+                       win = 0;
+               tp->rcv_wnd = imax(win, (int)(tp->rcv_adv - tp->rcv_nxt));
        }
 
        switch (tp->t_state) {
index bda27cd..61847ab 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: nfs_vnops.c,v 1.194 2024/03/25 17:57:07 guenther Exp $        */
+/*     $OpenBSD: nfs_vnops.c,v 1.195 2024/04/13 23:44:11 jsg Exp $     */
 /*     $NetBSD: nfs_vnops.c,v 1.62.4.1 1996/07/08 20:26:52 jtc Exp $   */
 
 /*
@@ -336,9 +336,9 @@ nfs_access(void *v)
         * Check access cache first. If a request has been made for this uid
         * shortly before, use the cached result.
         */
-        cachevalid = (np->n_accstamp != -1 &&
-            (gettime() - np->n_accstamp) < nfs_attrtimeo(np) &&
-            np->n_accuid == ap->a_cred->cr_uid);
+       cachevalid = (np->n_accstamp != -1 &&
+           (gettime() - np->n_accstamp) < nfs_attrtimeo(np) &&
+           np->n_accuid == ap->a_cred->cr_uid);
 
        if (cachevalid) {
                if (!np->n_accerror) {
@@ -408,7 +408,7 @@ nfs_access(void *v)
         * If we got the same result as for a previous, different request, OR
         * it in. Don't update the timestamp in that case.
         */
-        if (!error || error == EACCES) {
+       if (!error || error == EACCES) {
                if (cachevalid && np->n_accstamp != -1 &&
                    error == np->n_accerror) {
                        if (!error)
index 4d5c609..8794487 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ext2fs_bmap.c,v 1.28 2021/12/12 09:14:59 visa Exp $   */
+/*     $OpenBSD: ext2fs_bmap.c,v 1.29 2024/04/13 23:44:11 jsg Exp $    */
 /*     $NetBSD: ext2fs_bmap.c,v 1.5 2000/03/30 12:41:11 augustss Exp $ */
 
 /*
@@ -192,7 +192,7 @@ ext2fs_bmaparray(struct vnode *vp, daddr_t bn, daddr_t *bnp,
        devvp = VFSTOUFS(vp->v_mount)->um_devvp;
 
 #ifdef DIAGNOSTIC
-    if (num > NIADDR + 1 || num < 1) {
+       if (num > NIADDR + 1 || num < 1) {
                printf("ext2fs_bmaparray: num=%d\n", num);
                panic("ext2fs_bmaparray: num");
        }
index eee8e11..0097f23 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ext2fs_vnops.c,v 1.92 2024/03/25 17:57:07 guenther Exp $      */
+/*     $OpenBSD: ext2fs_vnops.c,v 1.93 2024/04/13 23:44:11 jsg Exp $   */
 /*     $NetBSD: ext2fs_vnops.c,v 1.1 1997/06/11 09:34:09 bouyer Exp $  */
 
 /*
@@ -819,7 +819,7 @@ abortit:
                                UIO_SYSSPACE, IO_NODELOCKED,
                                tcnp->cn_cred, NULL, curproc);
                        if (error == 0) {
-                                       namlen = dirbuf.dotdot_namlen;
+                               namlen = dirbuf.dotdot_namlen;
                                if (namlen != 2 ||
                                    dirbuf.dotdot_name[0] != '.' ||
                                    dirbuf.dotdot_name[1] != '.') {
index 47e2734..807c7f7 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ffs_balloc.c,v 1.46 2024/02/03 18:51:58 beck Exp $    */
+/*     $OpenBSD: ffs_balloc.c,v 1.47 2024/04/13 23:44:11 jsg Exp $     */
 /*     $NetBSD: ffs_balloc.c,v 1.3 1996/02/09 22:22:21 christos Exp $  */
 
 /*
@@ -750,7 +750,7 @@ fail:
                 * that we resolve the dependencies in one pass.
                 * Write the cylinder group buffers for these buffers too.
                 */
-                for (i = num; i >= unwindidx; i--) {
+               for (i = num; i >= unwindidx; i--) {
                        if (i == 0)
                                break;
 
index 6e3b02d..ac0574a 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: uvm_addr.c,v 1.32 2022/11/04 09:36:44 mpi Exp $       */
+/*     $OpenBSD: uvm_addr.c,v 1.33 2024/04/13 23:44:11 jsg Exp $       */
 
 /*
  * Copyright (c) 2011 Ariane van der Steldt <ariane@stack.nl>
@@ -1406,7 +1406,7 @@ uaddr_stack_brk_select(struct vm_map *map, struct uvm_addr_state *uaddr,
                if (uvm_addr_linsearch(map, uaddr, entry_out, addr_out,
                    0, sz, align, offset, dir, start, end - sz,
                    before_gap, after_gap) == 0)
-               return 0;
+                       return 0;
        }
 
        return ENOMEM;
index 89389d5..33e2cb4 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: uvm_aobj.c,v 1.109 2024/04/10 15:25:14 mpi Exp $      */
+/*     $OpenBSD: uvm_aobj.c,v 1.110 2024/04/13 23:44:11 jsg Exp $      */
 /*     $NetBSD: uvm_aobj.c,v 1.39 2001/02/18 21:19:08 chs Exp $        */
 
 /*
@@ -298,7 +298,7 @@ uao_set_swslot(struct uvm_object *uobj, int pageidx, int slot)
 
                /* but a set is not */
                printf("uao_set_swslot: uobj = %p\n", uobj);
-           panic("uao_set_swslot: attempt to set a slot on a NOSWAP object");
+               panic("uao_set_swslot: attempt to set a slot on a NOSWAP object");
        }
 
        /*