mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-26 18:43:33 -05:00
sound: Remove unnecessary semicolons
These aren't necessary after switch and if blocks. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
cd4035e814
commit
1d198f26c9
12 changed files with 20 additions and 20 deletions
|
@ -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
|
||||||
|
|
|
@ -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++) {
|
||||||
|
|
|
@ -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;
|
||||||
|
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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);
|
||||||
|
|
||||||
|
|
|
@ -429,7 +429,7 @@ static int tas5086_hw_params(struct snd_pcm_substream *substream,
|
||||||
default:
|
default:
|
||||||
dev_err(codec->dev, "Invalid bit width\n");
|
dev_err(codec->dev, "Invalid bit width\n");
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
};
|
}
|
||||||
|
|
||||||
ret = regmap_write(priv->regmap, TAS5086_SERIAL_DATA_IF, val);
|
ret = regmap_write(priv->regmap, TAS5086_SERIAL_DATA_IF, val);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
|
|
|
@ -246,7 +246,7 @@ static bool twl6040_is_path_unmuted(struct snd_soc_codec *codec,
|
||||||
return priv->dl2_unmuted;
|
return priv->dl2_unmuted;
|
||||||
default:
|
default:
|
||||||
return 1;
|
return 1;
|
||||||
};
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -1100,7 +1100,7 @@ static void twl6040_mute_path(struct snd_soc_codec *codec, enum twl6040_dai_id i
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
};
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static int twl6040_digital_mute(struct snd_soc_dai *dai, int mute)
|
static int twl6040_digital_mute(struct snd_soc_dai *dai, int mute)
|
||||||
|
|
|
@ -963,7 +963,7 @@ static bool fsl_spdif_readable_reg(struct device *dev, unsigned int reg)
|
||||||
return true;
|
return true;
|
||||||
default:
|
default:
|
||||||
return false;
|
return false;
|
||||||
};
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool fsl_spdif_writeable_reg(struct device *dev, unsigned int reg)
|
static bool fsl_spdif_writeable_reg(struct device *dev, unsigned int reg)
|
||||||
|
@ -982,7 +982,7 @@ static bool fsl_spdif_writeable_reg(struct device *dev, unsigned int reg)
|
||||||
return true;
|
return true;
|
||||||
default:
|
default:
|
||||||
return false;
|
return false;
|
||||||
};
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct regmap_config fsl_spdif_regmap_config = {
|
static const struct regmap_config fsl_spdif_regmap_config = {
|
||||||
|
|
|
@ -297,7 +297,7 @@ static bool tegra20_i2s_wr_rd_reg(struct device *dev, unsigned int reg)
|
||||||
return true;
|
return true;
|
||||||
default:
|
default:
|
||||||
return false;
|
return false;
|
||||||
};
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool tegra20_i2s_volatile_reg(struct device *dev, unsigned int reg)
|
static bool tegra20_i2s_volatile_reg(struct device *dev, unsigned int reg)
|
||||||
|
@ -310,7 +310,7 @@ static bool tegra20_i2s_volatile_reg(struct device *dev, unsigned int reg)
|
||||||
return true;
|
return true;
|
||||||
default:
|
default:
|
||||||
return false;
|
return false;
|
||||||
};
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool tegra20_i2s_precious_reg(struct device *dev, unsigned int reg)
|
static bool tegra20_i2s_precious_reg(struct device *dev, unsigned int reg)
|
||||||
|
@ -321,7 +321,7 @@ static bool tegra20_i2s_precious_reg(struct device *dev, unsigned int reg)
|
||||||
return true;
|
return true;
|
||||||
default:
|
default:
|
||||||
return false;
|
return false;
|
||||||
};
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct regmap_config tegra20_i2s_regmap_config = {
|
static const struct regmap_config tegra20_i2s_regmap_config = {
|
||||||
|
|
|
@ -213,7 +213,7 @@ static bool tegra20_spdif_wr_rd_reg(struct device *dev, unsigned int reg)
|
||||||
return true;
|
return true;
|
||||||
default:
|
default:
|
||||||
return false;
|
return false;
|
||||||
};
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool tegra20_spdif_volatile_reg(struct device *dev, unsigned int reg)
|
static bool tegra20_spdif_volatile_reg(struct device *dev, unsigned int reg)
|
||||||
|
@ -234,7 +234,7 @@ static bool tegra20_spdif_volatile_reg(struct device *dev, unsigned int reg)
|
||||||
return true;
|
return true;
|
||||||
default:
|
default:
|
||||||
return false;
|
return false;
|
||||||
};
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool tegra20_spdif_precious_reg(struct device *dev, unsigned int reg)
|
static bool tegra20_spdif_precious_reg(struct device *dev, unsigned int reg)
|
||||||
|
@ -247,7 +247,7 @@ static bool tegra20_spdif_precious_reg(struct device *dev, unsigned int reg)
|
||||||
return true;
|
return true;
|
||||||
default:
|
default:
|
||||||
return false;
|
return false;
|
||||||
};
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct regmap_config tegra20_spdif_regmap_config = {
|
static const struct regmap_config tegra20_spdif_regmap_config = {
|
||||||
|
|
|
@ -346,7 +346,7 @@ static bool tegra30_ahub_apbif_wr_rd_reg(struct device *dev, unsigned int reg)
|
||||||
return true;
|
return true;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
};
|
}
|
||||||
|
|
||||||
if (REG_IN_ARRAY(reg, CHANNEL_CTRL) ||
|
if (REG_IN_ARRAY(reg, CHANNEL_CTRL) ||
|
||||||
REG_IN_ARRAY(reg, CHANNEL_CLEAR) ||
|
REG_IN_ARRAY(reg, CHANNEL_CLEAR) ||
|
||||||
|
@ -381,7 +381,7 @@ static bool tegra30_ahub_apbif_volatile_reg(struct device *dev,
|
||||||
return true;
|
return true;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
};
|
}
|
||||||
|
|
||||||
if (REG_IN_ARRAY(reg, CHANNEL_CLEAR) ||
|
if (REG_IN_ARRAY(reg, CHANNEL_CLEAR) ||
|
||||||
REG_IN_ARRAY(reg, CHANNEL_STATUS) ||
|
REG_IN_ARRAY(reg, CHANNEL_STATUS) ||
|
||||||
|
|
|
@ -369,7 +369,7 @@ static bool tegra30_i2s_wr_rd_reg(struct device *dev, unsigned int reg)
|
||||||
return true;
|
return true;
|
||||||
default:
|
default:
|
||||||
return false;
|
return false;
|
||||||
};
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool tegra30_i2s_volatile_reg(struct device *dev, unsigned int reg)
|
static bool tegra30_i2s_volatile_reg(struct device *dev, unsigned int reg)
|
||||||
|
@ -382,7 +382,7 @@ static bool tegra30_i2s_volatile_reg(struct device *dev, unsigned int reg)
|
||||||
return true;
|
return true;
|
||||||
default:
|
default:
|
||||||
return false;
|
return false;
|
||||||
};
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct regmap_config tegra30_i2s_regmap_config = {
|
static const struct regmap_config tegra30_i2s_regmap_config = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue