Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1d198f26 authored by Joe Perches's avatar Joe Perches Committed by Takashi Iwai
Browse files

sound: Remove unnecessary semicolons



These aren't necessary after switch and if blocks.

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent cd4035e8
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1544,7 +1544,7 @@ static int ess_has_rec_mixer (int submodel)
		return 1;
		return 1;
	default:
	default:
		return 0;
		return 0;
	};
	}
};
};


#ifdef FKS_LOGGING
#ifdef FKS_LOGGING
+1 −1
Original line number Original line Diff line number Diff line
@@ -671,7 +671,7 @@ static int snd_vortex_new_pcm(vortex_t *chip, int idx, int nr)
			return err;
			return err;
		break;
		break;
#endif
#endif
	};
	}


	if (VORTEX_PCM_TYPE(pcm) == VORTEX_PCM_SPDIF) {
	if (VORTEX_PCM_TYPE(pcm) == VORTEX_PCM_SPDIF) {
		for (i = 0; i < ARRAY_SIZE(snd_vortex_mixer_spdif); i++) {
		for (i = 0; i < ARRAY_SIZE(snd_vortex_mixer_spdif); i++) {
+1 −1
Original line number Original line Diff line number Diff line
@@ -777,7 +777,7 @@ static int asoc_ssc_init(struct device *dev)
	if (ret) {
	if (ret) {
		dev_err(dev, "Could not register PCM: %d\n", ret);
		dev_err(dev, "Could not register PCM: %d\n", ret);
		goto err_unregister_dai;
		goto err_unregister_dai;
	};
	}


	return 0;
	return 0;


+1 −1
Original line number Original line Diff line number Diff line
@@ -328,7 +328,7 @@ static int ak4641_i2s_hw_params(struct snd_pcm_substream *substream,
	if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
	if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
		ak4641->playback_fs = rate;
		ak4641->playback_fs = rate;
		ak4641_set_deemph(codec);
		ak4641_set_deemph(codec);
	};
	}


	return 0;
	return 0;
}
}
+1 −1
Original line number Original line Diff line number Diff line
@@ -382,7 +382,7 @@ static int mc13783_set_tdm_slot_dac(struct snd_soc_dai *dai,
		break;
		break;
	default:
	default:
		return -EINVAL;
		return -EINVAL;
	};
	}


	snd_soc_update_bits(codec, MC13783_SSI_NETWORK, mask, val);
	snd_soc_update_bits(codec, MC13783_SSI_NETWORK, mask, val);


Loading