diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2015-10-15 05:25:28 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-10-16 16:21:35 +0200 |
commit | 8a98b4223d0eab88bba5eb215b275da4ff6ed99c (patch) | |
tree | b227401aade597cf54c3e604ac9674acaaf3c7d2 /sound/soc/sh/rcar/dvc.c | |
parent | ASoC: rsnd: Announce for removing Gen1 SRU support (diff) | |
download | linux-8a98b4223d0eab88bba5eb215b275da4ff6ed99c.tar.xz linux-8a98b4223d0eab88bba5eb215b275da4ff6ed99c.zip |
ASoC: rsnd: Gen1 probe is not error
Probing from Gen1 is not error. This patch fixup it
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/sh/rcar/dvc.c')
-rw-r--r-- | sound/soc/sh/rcar/dvc.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sound/soc/sh/rcar/dvc.c b/sound/soc/sh/rcar/dvc.c index 8d8eee6350c9..e36c0ac3374b 100644 --- a/sound/soc/sh/rcar/dvc.c +++ b/sound/soc/sh/rcar/dvc.c @@ -333,10 +333,8 @@ int rsnd_dvc_probe(struct platform_device *pdev, int i, nr, ret; /* This driver doesn't support Gen1 at this point */ - if (rsnd_is_gen1(priv)) { - dev_warn(dev, "CMD is not supported on Gen1\n"); - return -EINVAL; - } + if (rsnd_is_gen1(priv)) + return 0; rsnd_of_parse_dvc(pdev, of_data, priv); |