Commit edd84c42 authored by Miquel Raynal's avatar Miquel Raynal Committed by Krzysztof Kozlowski

memory: pl353-smc: Rename goto labels

A goto label is better named

        do_something:

than

        out_something_to_do:

Use the former wording and really describe what the jump involves.
Signed-off-by: default avatarMiquel Raynal <miquel.raynal@bootlin.com>
Link: https://lore.kernel.org/r/20210610082040.2075611-12-miquel.raynal@bootlin.comSigned-off-by: default avatarKrzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
parent 62584c87
...@@ -388,7 +388,7 @@ static int pl353_smc_probe(struct amba_device *adev, const struct amba_id *id) ...@@ -388,7 +388,7 @@ static int pl353_smc_probe(struct amba_device *adev, const struct amba_id *id)
err = clk_prepare_enable(pl353_smc->memclk); err = clk_prepare_enable(pl353_smc->memclk);
if (err) { if (err) {
dev_err(&adev->dev, "Unable to enable memory clock.\n"); dev_err(&adev->dev, "Unable to enable memory clock.\n");
goto out_clk_dis_aper; goto disable_axi_clk;
} }
amba_set_drvdata(adev, pl353_smc); amba_set_drvdata(adev, pl353_smc);
...@@ -408,7 +408,7 @@ static int pl353_smc_probe(struct amba_device *adev, const struct amba_id *id) ...@@ -408,7 +408,7 @@ static int pl353_smc_probe(struct amba_device *adev, const struct amba_id *id)
} }
if (!match) { if (!match) {
dev_err(&adev->dev, "no matching children\n"); dev_err(&adev->dev, "no matching children\n");
goto out_clk_disable; goto disable_mem_clk;
} }
init = match->data; init = match->data;
...@@ -418,9 +418,9 @@ static int pl353_smc_probe(struct amba_device *adev, const struct amba_id *id) ...@@ -418,9 +418,9 @@ static int pl353_smc_probe(struct amba_device *adev, const struct amba_id *id)
return 0; return 0;
out_clk_disable: disable_mem_clk:
clk_disable_unprepare(pl353_smc->memclk); clk_disable_unprepare(pl353_smc->memclk);
out_clk_dis_aper: disable_axi_clk:
clk_disable_unprepare(pl353_smc->aclk); clk_disable_unprepare(pl353_smc->aclk);
return err; return err;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment