Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2087a692 authored by Lee Jones's avatar Lee Jones
Browse files

ASoC: Ux500: Minor coding layout changes



Includes removal of duplicate debug print affirming entry into
the probe function, an unnecessary line break of a coding line
<80 chars and a white space change (unintentional tab).

Acked-by: default avatarOla Lilja <ola.o.lilja@stericsson.com>
Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
parent db5c811d
Loading
Loading
Loading
Loading
+2 −5
Original line number Original line Diff line number Diff line
@@ -88,8 +88,6 @@ static int __devinit mop500_probe(struct platform_device *pdev)
	struct device_node *np = pdev->dev.of_node;
	struct device_node *np = pdev->dev.of_node;
	int ret;
	int ret;


	pr_debug("%s: Enter.\n", __func__);

	dev_dbg(&pdev->dev, "%s: Enter.\n", __func__);
	dev_dbg(&pdev->dev, "%s: Enter.\n", __func__);


	mop500_card.dev = &pdev->dev;
	mop500_card.dev = &pdev->dev;
@@ -117,8 +115,7 @@ static int __devinit mop500_probe(struct platform_device *pdev)
	ret = snd_soc_register_card(&mop500_card);
	ret = snd_soc_register_card(&mop500_card);
	if (ret)
	if (ret)
		dev_err(&pdev->dev,
		dev_err(&pdev->dev,
			"Error: snd_soc_register_card failed (%d)!\n",
			"Error: snd_soc_register_card failed (%d)!\n", ret);
			ret);


	return ret;
	return ret;
}
}