Skip to content

Commit

Permalink
ASoC: mc13783: trivial: Cleanup module
Browse files Browse the repository at this point in the history
This is a trivial cleanup: remove useless variable mc13xxx and
extra spaces. No functional changes.

Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
Signed-off-by: Mark Brown <broonie@linaro.org>
  • Loading branch information
Alexander Shiyan authored and Mark Brown committed Jan 6, 2014
1 parent 295b842 commit 2b32098
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions sound/soc/codecs/mc13783.c
Original file line number Diff line number Diff line change
Expand Up @@ -752,27 +752,24 @@ static struct snd_soc_codec_driver soc_codec_dev_mc13783 = {

static int __init mc13783_codec_probe(struct platform_device *pdev)
{
struct mc13xxx *mc13xxx;
struct mc13783_priv *priv;
struct mc13xxx_codec_platform_data *pdata = pdev->dev.platform_data;
int ret;

mc13xxx = dev_get_drvdata(pdev->dev.parent);


priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
if (priv == NULL)
if (!priv)
return -ENOMEM;

dev_set_drvdata(&pdev->dev, priv);
priv->mc13xxx = mc13xxx;
if (pdata) {
priv->adc_ssi_port = pdata->adc_ssi_port;
priv->dac_ssi_port = pdata->dac_ssi_port;
} else {
return -ENOSYS;
}

dev_set_drvdata(&pdev->dev, priv);
priv->mc13xxx = dev_get_drvdata(pdev->dev.parent);

if (priv->adc_ssi_port == priv->dac_ssi_port)
ret = snd_soc_register_codec(&pdev->dev, &soc_codec_dev_mc13783,
mc13783_dai_sync, ARRAY_SIZE(mc13783_dai_sync));
Expand All @@ -792,9 +789,9 @@ static int mc13783_codec_remove(struct platform_device *pdev)

static struct platform_driver mc13783_codec_driver = {
.driver = {
.name = "mc13783-codec",
.owner = THIS_MODULE,
},
.name = "mc13783-codec",
.owner = THIS_MODULE,
},
.remove = mc13783_codec_remove,
};
module_platform_driver_probe(mc13783_codec_driver, mc13783_codec_probe);
Expand Down

0 comments on commit 2b32098

Please sign in to comment.