mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
Revert "tty: serial: bcm63xx: fix missing clk_put() in bcm63xx_uart"
This reverts commit580d952e44
("tty: serial: bcm63xx: fix missing clk_put() in bcm63xx_uart") because we should not be doing a clk_put() if we were not successful in getting a valid clock reference via clk_get() in the first place. Fixes:580d952e44
("tty: serial: bcm63xx: fix missing clk_put() in bcm63xx_uart") Signed-off-by: Florian Fainelli <f.fainelli@gmail.com> Cc: stable <stable@vger.kernel.org> Link: https://lore.kernel.org/r/20200501013904.1394-1-f.fainelli@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
6a8b55ed40
commit
092a9f59bc
1 changed files with 1 additions and 3 deletions
|
@ -843,10 +843,8 @@ static int bcm_uart_probe(struct platform_device *pdev)
|
|||
if (IS_ERR(clk) && pdev->dev.of_node)
|
||||
clk = of_clk_get(pdev->dev.of_node, 0);
|
||||
|
||||
if (IS_ERR(clk)) {
|
||||
clk_put(clk);
|
||||
if (IS_ERR(clk))
|
||||
return -ENODEV;
|
||||
}
|
||||
|
||||
port->iotype = UPIO_MEM;
|
||||
port->irq = res_irq->start;
|
||||
|
|
Loading…
Reference in a new issue