diff options
author | Lee Jones <lee.jones@linaro.org> | 2012-08-21 05:06:44 -0400 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2012-09-20 03:10:58 -0400 |
commit | 2087a692a54947ef5688d096e398111a25356692 (patch) | |
tree | cd1dc0ef9daa505dd1362fd801acabfa8415d579 /sound | |
parent | db5c811d4044b5bd2ef923c7466bd2720eee0887 (diff) |
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: Ola Lilja <ola.o.lilja@stericsson.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/ux500/mop500.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/sound/soc/ux500/mop500.c b/sound/soc/ux500/mop500.c index 6840df79d798..356611d9654d 100644 --- a/sound/soc/ux500/mop500.c +++ b/sound/soc/ux500/mop500.c | |||
@@ -88,8 +88,6 @@ static int __devinit mop500_probe(struct platform_device *pdev) | |||
88 | struct device_node *np = pdev->dev.of_node; | 88 | struct device_node *np = pdev->dev.of_node; |
89 | int ret; | 89 | int ret; |
90 | 90 | ||
91 | pr_debug("%s: Enter.\n", __func__); | ||
92 | |||
93 | dev_dbg(&pdev->dev, "%s: Enter.\n", __func__); | 91 | dev_dbg(&pdev->dev, "%s: Enter.\n", __func__); |
94 | 92 | ||
95 | mop500_card.dev = &pdev->dev; | 93 | mop500_card.dev = &pdev->dev; |
@@ -117,8 +115,7 @@ static int __devinit mop500_probe(struct platform_device *pdev) | |||
117 | ret = snd_soc_register_card(&mop500_card); | 115 | ret = snd_soc_register_card(&mop500_card); |
118 | if (ret) | 116 | if (ret) |
119 | dev_err(&pdev->dev, | 117 | dev_err(&pdev->dev, |
120 | "Error: snd_soc_register_card failed (%d)!\n", | 118 | "Error: snd_soc_register_card failed (%d)!\n", ret); |
121 | ret); | ||
122 | 119 | ||
123 | return ret; | 120 | return ret; |
124 | } | 121 | } |
@@ -131,7 +128,7 @@ static int __devexit mop500_remove(struct platform_device *pdev) | |||
131 | 128 | ||
132 | snd_soc_unregister_card(mop500_card); | 129 | snd_soc_unregister_card(mop500_card); |
133 | mop500_ab8500_remove(mop500_card); | 130 | mop500_ab8500_remove(mop500_card); |
134 | 131 | ||
135 | return 0; | 132 | return 0; |
136 | } | 133 | } |
137 | 134 | ||