ASoC: simple-card: Fix the sysclk selection.

For spdif there is no need to do the sysclk setting.

Signed-off-by: Xiubo Li <Li.Xiubo@freescale.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
This commit is contained in:
Xiubo Li 2014-01-06 12:34:36 +08:00 committed by Mark Brown
parent 71467e4641
commit e2a19ac6c5
1 changed files with 2 additions and 6 deletions

View File

@ -106,12 +106,8 @@ asoc_simple_card_sub_parse_of(struct device_node *np,
&dai->sysclk);
} else {
clk = of_clk_get(*node, 0);
if (IS_ERR(clk)) {
ret = PTR_ERR(clk);
goto parse_error;
}
dai->sysclk = clk_get_rate(clk);
if (!IS_ERR(clk))
dai->sysclk = clk_get_rate(clk);
}
ret = 0;