From: Christophe JAILLET Date: Sun, 9 May 2021 17:22:33 +0000 (+0200) Subject: tty: nozomi: Fix a resource leak in an error handling function X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=31a9a318255960d32ae183e95d0999daf2418608;p=linux.git tty: nozomi: Fix a resource leak in an error handling function A 'request_irq()' call is not balanced by a corresponding 'free_irq()' in the error handling path, as already done in the remove function. Add it. Fixes: 9842c38e9176 ("kfifo: fix warn_unused_result") Reviewed-by: Jiri Slaby Signed-off-by: Christophe JAILLET Link: https://lore.kernel.org/r/4f0d2b3038e82f081d370ccb0cade3ad88463fe7.1620580838.git.christophe.jaillet@wanadoo.fr Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/nozomi.c b/drivers/tty/nozomi.c index 5e0ddf22931e3..b85d4beabc1fb 100644 --- a/drivers/tty/nozomi.c +++ b/drivers/tty/nozomi.c @@ -1420,6 +1420,7 @@ err_free_tty: tty_unregister_device(ntty_driver, dc->index_start + i); tty_port_destroy(&dc->port[i].port); } + free_irq(pdev->irq, dc); err_free_kfifo: for (i = 0; i < MAX_PORT; i++) kfifo_free(&dc->port[i].fifo_ul);