Commit 49abd90c authored by Tony Prisk's avatar Tony Prisk Committed by Greg Kroah-Hartman

serial: vt8500: Cleanup code using devm_ function

Convert the last memory allocation (vt8500_port) to use devm_kzalloc
and remove the fail path cleanup code from vt8500_serial_probe.

Reorder iomem mapping above clk_enable to simplify fail code. The
clock is only enabled if all other resources are available.
Signed-off-by: default avatarTony Prisk <linux@prisktech.co.nz>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 12faa35a
...@@ -580,7 +580,8 @@ static int vt8500_serial_probe(struct platform_device *pdev) ...@@ -580,7 +580,8 @@ static int vt8500_serial_probe(struct platform_device *pdev)
return -EBUSY; return -EBUSY;
} }
vt8500_port = kzalloc(sizeof(struct vt8500_port), GFP_KERNEL); vt8500_port = devm_kzalloc(&pdev->dev, sizeof(struct vt8500_port),
GFP_KERNEL);
if (!vt8500_port) if (!vt8500_port)
return -ENOMEM; return -ENOMEM;
...@@ -591,14 +592,13 @@ static int vt8500_serial_probe(struct platform_device *pdev) ...@@ -591,14 +592,13 @@ static int vt8500_serial_probe(struct platform_device *pdev)
vt8500_port->clk = of_clk_get(pdev->dev.of_node, 0); vt8500_port->clk = of_clk_get(pdev->dev.of_node, 0);
if (IS_ERR(vt8500_port->clk)) { if (IS_ERR(vt8500_port->clk)) {
dev_err(&pdev->dev, "failed to get clock\n"); dev_err(&pdev->dev, "failed to get clock\n");
ret = -EINVAL; return -EINVAL;
goto err;
} }
ret = clk_prepare_enable(vt8500_port->clk); ret = clk_prepare_enable(vt8500_port->clk);
if (ret) { if (ret) {
dev_err(&pdev->dev, "failed to enable clock\n"); dev_err(&pdev->dev, "failed to enable clock\n");
goto err; return ret;
} }
vt8500_port->uart.type = PORT_VT8500; vt8500_port->uart.type = PORT_VT8500;
...@@ -622,10 +622,6 @@ static int vt8500_serial_probe(struct platform_device *pdev) ...@@ -622,10 +622,6 @@ static int vt8500_serial_probe(struct platform_device *pdev)
platform_set_drvdata(pdev, vt8500_port); platform_set_drvdata(pdev, vt8500_port);
return 0; return 0;
err:
kfree(vt8500_port);
return ret;
} }
static int vt8500_serial_remove(struct platform_device *pdev) static int vt8500_serial_remove(struct platform_device *pdev)
...@@ -635,7 +631,6 @@ static int vt8500_serial_remove(struct platform_device *pdev) ...@@ -635,7 +631,6 @@ static int vt8500_serial_remove(struct platform_device *pdev)
platform_set_drvdata(pdev, NULL); platform_set_drvdata(pdev, NULL);
clk_disable_unprepare(vt8500_port->clk); clk_disable_unprepare(vt8500_port->clk);
uart_remove_one_port(&vt8500_uart_driver, &vt8500_port->uart); uart_remove_one_port(&vt8500_uart_driver, &vt8500_port->uart);
kfree(vt8500_port);
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment