Prev: [GIT PATCH] USB fixes for 2.6.35-git
Next: [PATCH 11/11] serial: add support for various Titan PCI cards
From: Greg Kroah-Hartman on 4 Jun 2010 16:50 From: Tobias Klauser <tklauser(a)distanz.ch> altera_uart_remove should be in .devexit.text Signed-off-by: Tobias Klauser <tklauser(a)distanz.ch> Signed-off-by: Greg Kroah-Hartman <gregkh(a)suse.de> --- drivers/serial/altera_uart.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/serial/altera_uart.c b/drivers/serial/altera_uart.c index 7d6afc9..0f11896 100644 --- a/drivers/serial/altera_uart.c +++ b/drivers/serial/altera_uart.c @@ -498,7 +498,7 @@ static int __devinit altera_uart_probe(struct platform_device *pdev) return 0; } -static int altera_uart_remove(struct platform_device *pdev) +static int __devexit altera_uart_remove(struct platform_device *pdev) { struct uart_port *port; int i; -- 1.7.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |