diff options
Diffstat (limited to 'drivers/tty/serial/sunhv.c')
| -rw-r--r-- | drivers/tty/serial/sunhv.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/drivers/tty/serial/sunhv.c b/drivers/tty/serial/sunhv.c index 505961cfd934..b9bf9c53f7fd 100644 --- a/drivers/tty/serial/sunhv.c +++ b/drivers/tty/serial/sunhv.c @@ -519,7 +519,7 @@ static struct console sunhv_console = {  	.data	=	&sunhv_reg,  }; -static int __devinit hv_probe(struct platform_device *op) +static int hv_probe(struct platform_device *op)  {  	struct uart_port *port;  	unsigned long minor; @@ -598,7 +598,7 @@ out_free_port:  	return err;  } -static int __devexit hv_remove(struct platform_device *dev) +static int hv_remove(struct platform_device *dev)  {  	struct uart_port *port = dev_get_drvdata(&dev->dev); @@ -636,7 +636,7 @@ static struct platform_driver hv_driver = {  		.of_match_table = hv_match,  	},  	.probe		= hv_probe, -	.remove		= __devexit_p(hv_remove), +	.remove		= hv_remove,  };  static int __init sunhv_init(void) |