aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2020-01-26 14:20:57 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2020-01-26 14:20:57 +0000
commitc73222d0e6db4b4719b92d8622eabc343b609e1a (patch)
tree8d7b1898abe7d01680281bae37d9a38e1aeadd27 /sys
parent1207cda9614c0efa314f5bef902cd12d77cf4d97 (diff)
downloadsrc-c73222d0e6db4b4719b92d8622eabc343b609e1a.tar.gz
src-c73222d0e6db4b4719b92d8622eabc343b609e1a.zip
Fix some misleading indentation warnings reported by recent clang.
These should not be any functional change. While the change in emul10kx-pcm.c looks like a real bug fix (as opposed to inconsistent whitespace), the extra statements were not harmful. Reviewed by: kib Sponsored by: DARPA Differential Revision: https://reviews.freebsd.org/D23363
Notes
Notes: svn path=/head/; revision=357146
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/mrsas/mrsas_cam.c15
-rw-r--r--sys/dev/sound/pci/emu10k1.c11
-rw-r--r--sys/dev/sound/pci/emu10kx-pcm.c3
-rw-r--r--sys/kern/subr_stats.c4
4 files changed, 17 insertions, 16 deletions
diff --git a/sys/dev/mrsas/mrsas_cam.c b/sys/dev/mrsas/mrsas_cam.c
index c9290f6a7621..0ff897a01aa8 100644
--- a/sys/dev/mrsas/mrsas_cam.c
+++ b/sys/dev/mrsas/mrsas_cam.c
@@ -1908,13 +1908,14 @@ mrsas_track_scsiio(struct mrsas_softc *sc, target_id_t tgt_id, u_int32_t bus_id)
for (i = 0 ; i < sc->max_fw_cmds; i++) {
mpt_cmd = sc->mpt_cmd_list[i];
- /*
- * Check if the target_id and bus_id is same as the timeout IO
- */
- if (mpt_cmd->ccb_ptr) {
- /* bus_id = 1 denotes a VD */
- if (bus_id == 1)
- tgt_id = (mpt_cmd->ccb_ptr->ccb_h.target_id - (MRSAS_MAX_PD - 1));
+ /*
+ * Check if the target_id and bus_id is same as the timeout IO
+ */
+ if (mpt_cmd->ccb_ptr) {
+ /* bus_id = 1 denotes a VD */
+ if (bus_id == 1)
+ tgt_id =
+ (mpt_cmd->ccb_ptr->ccb_h.target_id - (MRSAS_MAX_PD - 1));
if (mpt_cmd->ccb_ptr->cpi.bus_id == bus_id &&
mpt_cmd->ccb_ptr->ccb_h.target_id == tgt_id) {
diff --git a/sys/dev/sound/pci/emu10k1.c b/sys/dev/sound/pci/emu10k1.c
index 028f100c5953..94769b38faf0 100644
--- a/sys/dev/sound/pci/emu10k1.c
+++ b/sys/dev/sound/pci/emu10k1.c
@@ -1257,11 +1257,12 @@ emu_intr(void *data)
#endif
}
- if (stat & EMU_IPR_MIDIRECVBUFE)
- if (sc->mpu_intr) {
- (sc->mpu_intr)(sc->mpu);
- ack |= EMU_IPR_MIDIRECVBUFE | EMU_IPR_MIDITRANSBUFE;
- }
+ if (stat & EMU_IPR_MIDIRECVBUFE) {
+ if (sc->mpu_intr) {
+ (sc->mpu_intr)(sc->mpu);
+ ack |= EMU_IPR_MIDIRECVBUFE | EMU_IPR_MIDITRANSBUFE;
+ }
+ }
if (stat & ~ack)
device_printf(sc->dev, "dodgy irq: %x (harmless)\n",
stat & ~ack);
diff --git a/sys/dev/sound/pci/emu10kx-pcm.c b/sys/dev/sound/pci/emu10kx-pcm.c
index 0099b0f044d0..58d25d7e68c5 100644
--- a/sys/dev/sound/pci/emu10kx-pcm.c
+++ b/sys/dev/sound/pci/emu10kx-pcm.c
@@ -263,11 +263,12 @@ emu_dspmixer_uninit(struct snd_mixer *m)
/* drop submixer for AC97 codec */
sc = mix_getdevinfo(m);
- if (sc->sm != NULL)
+ if (sc->sm != NULL) {
err = mixer_delete(sc->sm);
if (err)
return (err);
sc->sm = NULL;
+ }
return (0);
}
diff --git a/sys/kern/subr_stats.c b/sys/kern/subr_stats.c
index a212f739deca..6181cf7bad74 100644
--- a/sys/kern/subr_stats.c
+++ b/sys/kern/subr_stats.c
@@ -1583,9 +1583,7 @@ stats_v1_blob_iter(struct statsblobv1 *sb, stats_v1_blob_itercb_t icb,
int i, j, firstvoi;
ctx.usrctx = usrctx;
- ctx.flags |= SB_IT_FIRST_CB;
- ctx.flags &= ~(SB_IT_FIRST_VOI | SB_IT_LAST_VOI | SB_IT_FIRST_VOISTAT |
- SB_IT_LAST_VOISTAT);
+ ctx.flags = SB_IT_FIRST_CB;
firstvoi = 1;
for (i = 0; i < NVOIS(sb); i++) {