Skip to content

Commit

Permalink
ASoC: qcom: Remove useless function call
Browse files Browse the repository at this point in the history
The function platform_set_drvdata(pdev, data) copies the value of
the variable data to pdev->dev.driver_data,but when calling
snd_soc_register_card,the function dev_set_drvdata(card->dev, card)
will override it, so i think that the former copy operation is
useless and can be removed.

Signed-off-by: Peng Donglin <dolinux.peng@gmail.com>
Acked-by: Banajit Goswami <bgoswami@codeaurora.org>
Signed-off-by: Mark Brown <broonie@kernel.org>
  • Loading branch information
Donglin Peng authored and Mark Brown committed Aug 21, 2017
1 parent 193e25e commit 70024eb
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion sound/soc/qcom/apq8016_sbc.c
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,6 @@ static int apq8016_sbc_platform_probe(struct platform_device *pdev)
if (IS_ERR(data->spkr_iomux))
return PTR_ERR(data->spkr_iomux);

platform_set_drvdata(pdev, data);
snd_soc_card_set_drvdata(card, data);

return devm_snd_soc_register_card(&pdev->dev, card);
Expand Down

0 comments on commit 70024eb

Please sign in to comment.