提交 dfa7f343 编写于 作者: H Haavard Skinnemoen 提交者: Linus Torvalds

atmel_serial: fix bugs in probe() error path and remove()

When an error happens in probe(), the clocks should be disabled, but
only if the port isn't already used as a console.

In remove(), the port struct shouldn't be freed because it's defined
statically.
Signed-off-by: NHaavard Skinnemoen <hskinnemoen@atmel.com>
Cc: Andrew Victor <linux@maxim.org.za>
Tested-by: NMarc Pignat <marc.pignat@hevs.ch>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 1c0fd82f
...@@ -934,8 +934,18 @@ static int __init atmel_late_console_init(void) ...@@ -934,8 +934,18 @@ static int __init atmel_late_console_init(void)
core_initcall(atmel_late_console_init); core_initcall(atmel_late_console_init);
static inline bool atmel_is_console_port(struct uart_port *port)
{
return port->cons && port->cons->index == port->line;
}
#else #else
#define ATMEL_CONSOLE_DEVICE NULL #define ATMEL_CONSOLE_DEVICE NULL
static inline bool atmel_is_console_port(struct uart_port *port)
{
return false;
}
#endif #endif
static struct uart_driver atmel_uart = { static struct uart_driver atmel_uart = {
...@@ -993,9 +1003,19 @@ static int __devinit atmel_serial_probe(struct platform_device *pdev) ...@@ -993,9 +1003,19 @@ static int __devinit atmel_serial_probe(struct platform_device *pdev)
atmel_init_port(port, pdev); atmel_init_port(port, pdev);
ret = uart_add_one_port(&atmel_uart, &port->uart); ret = uart_add_one_port(&atmel_uart, &port->uart);
if (!ret) { if (ret)
device_init_wakeup(&pdev->dev, 1); goto err_add_port;
platform_set_drvdata(pdev, port);
device_init_wakeup(&pdev->dev, 1);
platform_set_drvdata(pdev, port);
return 0;
err_add_port:
if (!atmel_is_console_port(&port->uart)) {
clk_disable(port->clk);
clk_put(port->clk);
port->clk = NULL;
} }
return ret; return ret;
...@@ -1007,16 +1027,15 @@ static int __devexit atmel_serial_remove(struct platform_device *pdev) ...@@ -1007,16 +1027,15 @@ static int __devexit atmel_serial_remove(struct platform_device *pdev)
struct atmel_uart_port *atmel_port = (struct atmel_uart_port *)port; struct atmel_uart_port *atmel_port = (struct atmel_uart_port *)port;
int ret = 0; int ret = 0;
clk_disable(atmel_port->clk);
clk_put(atmel_port->clk);
device_init_wakeup(&pdev->dev, 0); device_init_wakeup(&pdev->dev, 0);
platform_set_drvdata(pdev, NULL); platform_set_drvdata(pdev, NULL);
if (port) { ret = uart_remove_one_port(&atmel_uart, port);
ret = uart_remove_one_port(&atmel_uart, port);
kfree(port); /* "port" is allocated statically, so we shouldn't free it */
}
clk_disable(atmel_port->clk);
clk_put(atmel_port->clk);
return ret; return ret;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册