diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-11-04 19:49:21 +0900 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2016-11-18 02:16:08 +0100 |
commit | b92b7dbc714f3e604102ad0f056124fd5f8c00ce (patch) | |
tree | a416460fc0581f3ea199588d7746df5743d9f1f8 /drivers/i2c | |
parent | a837bad6f213669b967b56a4a6f81d8dfdf40428 (diff) | |
download | linux-b92b7dbc714f3e604102ad0f056124fd5f8c00ce.tar.gz linux-b92b7dbc714f3e604102ad0f056124fd5f8c00ce.tar.bz2 linux-b92b7dbc714f3e604102ad0f056124fd5f8c00ce.zip |
i2c: uniphier-f: rename jump label to follow coding style guideline
Documentation/CodingStyle recommends to use label names which say
what the goto does or why the goto exists.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Diffstat (limited to 'drivers/i2c')
-rw-r--r-- | drivers/i2c/busses/i2c-uniphier-f.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/i2c/busses/i2c-uniphier-f.c b/drivers/i2c/busses/i2c-uniphier-f.c index db9105e52c79..beee31892295 100644 --- a/drivers/i2c/busses/i2c-uniphier-f.c +++ b/drivers/i2c/busses/i2c-uniphier-f.c @@ -528,7 +528,7 @@ static int uniphier_fi2c_probe(struct platform_device *pdev) if (!clk_rate) { dev_err(dev, "input clock rate should not be zero\n"); ret = -EINVAL; - goto err; + goto disable_clk; } init_completion(&priv->comp); @@ -547,11 +547,11 @@ static int uniphier_fi2c_probe(struct platform_device *pdev) pdev->name, priv); if (ret) { dev_err(dev, "failed to request irq %d\n", irq); - goto err; + goto disable_clk; } ret = i2c_add_adapter(&priv->adap); -err: +disable_clk: if (ret) clk_disable_unprepare(priv->clk); |