mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-05-24 10:39:52 +00:00
clk: max77686: Remove redundant break
'break' after 'goto' is redundant. Remove it. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Acked-by: Jonghwa Lee <jonghwa3.lee@samsung.com> Signed-off-by: Mike Turquette <mturquette@linaro.org>
This commit is contained in:
parent
0903ea6017
commit
aa73fbc504
1 changed files with 0 additions and 2 deletions
|
@ -157,11 +157,9 @@ static int max77686_clk_probe(struct platform_device *pdev)
|
||||||
case MAX77686_CLK_AP:
|
case MAX77686_CLK_AP:
|
||||||
dev_err(&pdev->dev, "Fail to register CLK_AP\n");
|
dev_err(&pdev->dev, "Fail to register CLK_AP\n");
|
||||||
goto err_clk_ap;
|
goto err_clk_ap;
|
||||||
break;
|
|
||||||
case MAX77686_CLK_CP:
|
case MAX77686_CLK_CP:
|
||||||
dev_err(&pdev->dev, "Fail to register CLK_CP\n");
|
dev_err(&pdev->dev, "Fail to register CLK_CP\n");
|
||||||
goto err_clk_cp;
|
goto err_clk_cp;
|
||||||
break;
|
|
||||||
case MAX77686_CLK_PMIC:
|
case MAX77686_CLK_PMIC:
|
||||||
dev_err(&pdev->dev, "Fail to register CLK_PMIC\n");
|
dev_err(&pdev->dev, "Fail to register CLK_PMIC\n");
|
||||||
goto err_clk_pmic;
|
goto err_clk_pmic;
|
||||||
|
|
Loading…
Add table
Reference in a new issue