From: Ilpo Järvinen Date: Mon, 23 Jan 2023 17:38:57 +0000 (+0200) Subject: serial: liteuart: Correct error rollback X-Git-Tag: v6.3-rc1~109^2~52 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=ed0400ad547c0b88d2f06ecf22a089eb2e84c9b7;p=linux-2.6-block.git serial: liteuart: Correct error rollback Goto to the correct rollback label instead of directly returning. Fixes: 5602cf99dcdc ("serial: liteuart: add IRQ support for the RX path") Reported-by: Stephen Rothwell Reported-by: kernel test robot Reported-by: Dan Carpenter Signed-off-by: Ilpo Järvinen Reviewed-by: Gabriel Somlo Link: https://lore.kernel.org/r/20230123173857.40695-3-ilpo.jarvinen@linux.intel.com Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/serial/liteuart.c b/drivers/tty/serial/liteuart.c index ef557d59e4c8..192ad681de35 100644 --- a/drivers/tty/serial/liteuart.c +++ b/drivers/tty/serial/liteuart.c @@ -313,7 +313,7 @@ static int liteuart_probe(struct platform_device *pdev) ret = platform_get_irq_optional(pdev, 0); if (ret < 0 && ret != -ENXIO) - return ret; + goto err_erase_id; if (ret > 0) port->irq = ret;