diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2013-04-24 12:23:14 -0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2013-05-12 12:45:34 -0400 |
commit | f8b24fcbd05bf7a9112812bf6ec60679ae928801 (patch) | |
tree | 036d8f4bfb0b849e1fd3c2a95137c041509f9004 /sound/soc/mxs | |
parent | 2fc059f2cc875a6d7372057093cd78cc9284b555 (diff) |
ASoC: mxs-sgtl5000: Remove unneeded 'ret' variable
Variable 'ret' is not needed here, so just remove it.
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Acked-by: Shawn Guo <shawn.guo@linaro.org>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/mxs')
-rw-r--r-- | sound/soc/mxs/mxs-sgtl5000.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/mxs/mxs-sgtl5000.c b/sound/soc/mxs/mxs-sgtl5000.c index b1d9b5ebeeeb..4f74b051f73a 100644 --- a/sound/soc/mxs/mxs-sgtl5000.c +++ b/sound/soc/mxs/mxs-sgtl5000.c | |||
@@ -116,7 +116,7 @@ static int mxs_sgtl5000_probe_dt(struct platform_device *pdev) | |||
116 | { | 116 | { |
117 | struct device_node *np = pdev->dev.of_node; | 117 | struct device_node *np = pdev->dev.of_node; |
118 | struct device_node *saif_np[2], *codec_np; | 118 | struct device_node *saif_np[2], *codec_np; |
119 | int i, ret = 0; | 119 | int i; |
120 | 120 | ||
121 | if (!np) | 121 | if (!np) |
122 | return 1; /* no device tree */ | 122 | return 1; /* no device tree */ |
@@ -142,7 +142,7 @@ static int mxs_sgtl5000_probe_dt(struct platform_device *pdev) | |||
142 | of_node_put(saif_np[0]); | 142 | of_node_put(saif_np[0]); |
143 | of_node_put(saif_np[1]); | 143 | of_node_put(saif_np[1]); |
144 | 144 | ||
145 | return ret; | 145 | return 0; |
146 | } | 146 | } |
147 | 147 | ||
148 | static int mxs_sgtl5000_probe(struct platform_device *pdev) | 148 | static int mxs_sgtl5000_probe(struct platform_device *pdev) |