diff options
author | Codrut Grosu <codrut.cristian.grosu@gmail.com> | 2017-02-25 12:18:08 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-03-07 13:50:49 +0100 |
commit | e2c187a689b4a717024ba90c67a6ecd8ff36a23e (patch) | |
tree | 29f373181c903d0d295cc870829a6acb9c282cc5 /sound/soc/tegra/tegra_alc5632.c | |
parent | Linux 4.11-rc1 (diff) | |
download | linux-e2c187a689b4a717024ba90c67a6ecd8ff36a23e.tar.xz linux-e2c187a689b4a717024ba90c67a6ecd8ff36a23e.zip |
ASoC: tegra: Remove unnecessary 'out of memory' message
This was reported by checkpatch.pl
Signed-off-by: Codrut GROSU <codrut.cristian.grosu@gmail.com>
Acked-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/tegra/tegra_alc5632.c')
-rw-r--r-- | sound/soc/tegra/tegra_alc5632.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sound/soc/tegra/tegra_alc5632.c b/sound/soc/tegra/tegra_alc5632.c index eead6e7f205b..0509902512cc 100644 --- a/sound/soc/tegra/tegra_alc5632.c +++ b/sound/soc/tegra/tegra_alc5632.c @@ -169,10 +169,8 @@ static int tegra_alc5632_probe(struct platform_device *pdev) alc5632 = devm_kzalloc(&pdev->dev, sizeof(struct tegra_alc5632), GFP_KERNEL); - if (!alc5632) { - dev_err(&pdev->dev, "Can't allocate tegra_alc5632\n"); + if (!alc5632) return -ENOMEM; - } card->dev = &pdev->dev; platform_set_drvdata(pdev, card); |