From: Daniel Thompson <daniel.thompson@linaro.org>
To: Tushar Behera <tushar.b@samsung.com>,
linux-kernel@vger.kernel.org, linux-serial@vger.kernel.org,
jslaby@suse.cz, gregkh@linuxfoundation.org,
linux@arm.linux.org.uk
Cc: trblinux@gmail.com
Subject: Re: [PATCH 1/2] serial: amba-pl011: Remove redundant label
Date: Mon, 23 Jun 2014 13:37:13 +0100 [thread overview]
Message-ID: <53A81F79.4080903@linaro.org> (raw)
In-Reply-To: <1403503151-4166-2-git-send-email-tushar.b@samsung.com>
On 23/06/14 06:59, Tushar Behera wrote:
> The label 'out' is only used to return the error code. We can return the
> error code directly and remove 'out' label.
>
> Signed-off-by: Tushar Behera <tushar.b@samsung.com>
> ---
> drivers/tty/serial/amba-pl011.c | 30 ++++++++++--------------------
> 1 file changed, 10 insertions(+), 20 deletions(-)
>
> diff --git a/drivers/tty/serial/amba-pl011.c b/drivers/tty/serial/amba-pl011.c
> index 0e26dcb..8572f2a 100644
> --- a/drivers/tty/serial/amba-pl011.c
> +++ b/drivers/tty/serial/amba-pl011.c
> @@ -1484,7 +1484,7 @@ static int pl011_hwinit(struct uart_port *port)
> */
> retval = clk_prepare_enable(uap->clk);
> if (retval)
> - goto out;
> + return retval;
>
> uap->port.uartclk = clk_get_rate(uap->clk);
>
> @@ -1507,8 +1507,6 @@ static int pl011_hwinit(struct uart_port *port)
> plat->init();
> }
> return 0;
> - out:
> - return retval;
> }
>
> static void pl011_write_lcr_h(struct uart_amba_port *uap, unsigned int lcr_h)
> @@ -2131,32 +2129,24 @@ static int pl011_probe(struct amba_device *dev, const struct amba_id *id)
> if (amba_ports[i] == NULL)
> break;
>
> - if (i == ARRAY_SIZE(amba_ports)) {
> - ret = -EBUSY;
> - goto out;
> - }
> + if (i == ARRAY_SIZE(amba_ports))
> + return -EBUSY;
>
> uap = devm_kzalloc(&dev->dev, sizeof(struct uart_amba_port),
> GFP_KERNEL);
> - if (uap == NULL) {
> - ret = -ENOMEM;
> - goto out;
> - }
> + if (uap == NULL)
> + return -ENOMEM;
>
> i = pl011_probe_dt_alias(i, &dev->dev);
>
> base = devm_ioremap(&dev->dev, dev->res.start,
> resource_size(&dev->res));
> - if (!base) {
> - ret = -ENOMEM;
> - goto out;
> - }
> + if (!base)
> + return -ENOMEM;
>
> uap->clk = devm_clk_get(&dev->dev, NULL);
> - if (IS_ERR(uap->clk)) {
> - ret = PTR_ERR(uap->clk);
> - goto out;
> - }
> + if (IS_ERR(uap->clk))
> + return PTR_ERR(uap->clk);
>
> uap->vendor = vendor;
> uap->lcrh_rx = vendor->lcrh_rx;
> @@ -2198,7 +2188,7 @@ static int pl011_probe(struct amba_device *dev, const struct amba_id *id)
> uart_unregister_driver(&amba_reg);
> pl011_dma_remove(uap);
> }
> - out:
> +
> return ret;
> }
Reviewed-by: Daniel Thompson <daniel.thompson@linaro.org>
next prev parent reply other threads:[~2014-06-23 12:37 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-06-23 5:59 [PATCH 0/2] serial: amba-pl01x: Clean up patches Tushar Behera
2014-06-23 5:59 ` [PATCH 1/2] serial: amba-pl011: Remove redundant label Tushar Behera
2014-06-23 12:37 ` Daniel Thompson [this message]
2014-06-23 5:59 ` [PATCH 2/2] serial: amba-pl010: Use devres APIs Tushar Behera
2014-06-23 12:46 ` Daniel Thompson
2014-06-26 9:37 ` Tushar Behera
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=53A81F79.4080903@linaro.org \
--to=daniel.thompson@linaro.org \
--cc=gregkh@linuxfoundation.org \
--cc=jslaby@suse.cz \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-serial@vger.kernel.org \
--cc=linux@arm.linux.org.uk \
--cc=trblinux@gmail.com \
--cc=tushar.b@samsung.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.