Skip to content

Commit

Permalink
ASoC: hdmi-codec: remove function name debug traces
Browse files Browse the repository at this point in the history
Remove the debug traces only showing the function name on entry.
The same can be obtained using ftrace.

Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
  • Loading branch information
jbrun3t authored and broonie committed May 8, 2019
1 parent 893d1a9 commit 900e5da
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions sound/soc/codecs/hdmi-codec.c
Original file line number Diff line number Diff line change
Expand Up @@ -416,8 +416,6 @@ static int hdmi_codec_startup(struct snd_pcm_substream *substream,
struct hdmi_codec_priv *hcp = snd_soc_dai_get_drvdata(dai);
int ret = 0;

dev_dbg(dai->dev, "%s()\n", __func__);

ret = hdmi_codec_new_stream(substream, dai);
if (ret)
return ret;
Expand Down Expand Up @@ -457,8 +455,6 @@ static void hdmi_codec_shutdown(struct snd_pcm_substream *substream,
{
struct hdmi_codec_priv *hcp = snd_soc_dai_get_drvdata(dai);

dev_dbg(dai->dev, "%s()\n", __func__);

WARN_ON(hcp->current_stream != substream);

hcp->chmap_idx = HDMI_CODEC_CHMAP_IDX_UNKNOWN;
Expand Down Expand Up @@ -527,8 +523,6 @@ static int hdmi_codec_set_fmt(struct snd_soc_dai *dai,
struct hdmi_codec_priv *hcp = snd_soc_dai_get_drvdata(dai);
struct hdmi_codec_daifmt cf = { 0 };

dev_dbg(dai->dev, "%s()\n", __func__);

if (dai->id == DAI_ID_SPDIF)
return 0;

Expand Down Expand Up @@ -597,8 +591,6 @@ static int hdmi_codec_digital_mute(struct snd_soc_dai *dai, int mute)
{
struct hdmi_codec_priv *hcp = snd_soc_dai_get_drvdata(dai);

dev_dbg(dai->dev, "%s()\n", __func__);

if (hcp->hcd.ops->digital_mute)
return hcp->hcd.ops->digital_mute(dai->dev->parent,
hcp->hcd.data, mute);
Expand Down Expand Up @@ -656,8 +648,6 @@ static int hdmi_codec_pcm_new(struct snd_soc_pcm_runtime *rtd,
};
int ret;

dev_dbg(dai->dev, "%s()\n", __func__);

ret = snd_pcm_add_chmap_ctls(rtd->pcm, SNDRV_PCM_STREAM_PLAYBACK,
NULL, drv->playback.channels_max, 0,
&hcp->chmap_info);
Expand Down Expand Up @@ -754,8 +744,6 @@ static int hdmi_codec_probe(struct platform_device *pdev)
int dai_count, i = 0;
int ret;

dev_dbg(dev, "%s()\n", __func__);

if (!hcd) {
dev_err(dev, "%s: No platform data\n", __func__);
return -EINVAL;
Expand Down

0 comments on commit 900e5da

Please sign in to comment.