diff options
Diffstat (limited to 'drivers/serial/s3c2410.c')
| -rw-r--r-- | drivers/serial/s3c2410.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/serial/s3c2410.c b/drivers/serial/s3c2410.c index b5d7cbcba2ae..c99f0821cae3 100644 --- a/drivers/serial/s3c2410.c +++ b/drivers/serial/s3c2410.c | |||
| @@ -88,7 +88,7 @@ static int s3c2410_serial_probe(struct platform_device *dev) | |||
| 88 | return s3c24xx_serial_probe(dev, &s3c2410_uart_inf); | 88 | return s3c24xx_serial_probe(dev, &s3c2410_uart_inf); |
| 89 | } | 89 | } |
| 90 | 90 | ||
| 91 | static struct platform_driver s3c2410_serial_drv = { | 91 | static struct platform_driver s3c2410_serial_driver = { |
| 92 | .probe = s3c2410_serial_probe, | 92 | .probe = s3c2410_serial_probe, |
| 93 | .remove = __devexit_p(s3c24xx_serial_remove), | 93 | .remove = __devexit_p(s3c24xx_serial_remove), |
| 94 | .driver = { | 94 | .driver = { |
| @@ -97,16 +97,16 @@ static struct platform_driver s3c2410_serial_drv = { | |||
| 97 | }, | 97 | }, |
| 98 | }; | 98 | }; |
| 99 | 99 | ||
| 100 | s3c24xx_console_init(&s3c2410_serial_drv, &s3c2410_uart_inf); | 100 | s3c24xx_console_init(&s3c2410_serial_driver, &s3c2410_uart_inf); |
| 101 | 101 | ||
| 102 | static int __init s3c2410_serial_init(void) | 102 | static int __init s3c2410_serial_init(void) |
| 103 | { | 103 | { |
| 104 | return s3c24xx_serial_init(&s3c2410_serial_drv, &s3c2410_uart_inf); | 104 | return s3c24xx_serial_init(&s3c2410_serial_driver, &s3c2410_uart_inf); |
| 105 | } | 105 | } |
| 106 | 106 | ||
| 107 | static void __exit s3c2410_serial_exit(void) | 107 | static void __exit s3c2410_serial_exit(void) |
| 108 | { | 108 | { |
| 109 | platform_driver_unregister(&s3c2410_serial_drv); | 109 | platform_driver_unregister(&s3c2410_serial_driver); |
| 110 | } | 110 | } |
| 111 | 111 | ||
| 112 | module_init(s3c2410_serial_init); | 112 | module_init(s3c2410_serial_init); |
