diff options
Diffstat (limited to 'drivers/serial/s3c24a0.c')
| -rw-r--r-- | drivers/serial/s3c24a0.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/serial/s3c24a0.c b/drivers/serial/s3c24a0.c index 786a067d62ac..26c49e18bdd1 100644 --- a/drivers/serial/s3c24a0.c +++ b/drivers/serial/s3c24a0.c | |||
| @@ -92,7 +92,7 @@ static int s3c24a0_serial_probe(struct platform_device *dev) | |||
| 92 | return s3c24xx_serial_probe(dev, &s3c24a0_uart_inf); | 92 | return s3c24xx_serial_probe(dev, &s3c24a0_uart_inf); |
| 93 | } | 93 | } |
| 94 | 94 | ||
| 95 | static struct platform_driver s3c24a0_serial_drv = { | 95 | static struct platform_driver s3c24a0_serial_driver = { |
| 96 | .probe = s3c24a0_serial_probe, | 96 | .probe = s3c24a0_serial_probe, |
| 97 | .remove = __devexit_p(s3c24xx_serial_remove), | 97 | .remove = __devexit_p(s3c24xx_serial_remove), |
| 98 | .driver = { | 98 | .driver = { |
| @@ -101,16 +101,16 @@ static struct platform_driver s3c24a0_serial_drv = { | |||
| 101 | }, | 101 | }, |
| 102 | }; | 102 | }; |
| 103 | 103 | ||
| 104 | s3c24xx_console_init(&s3c24a0_serial_drv, &s3c24a0_uart_inf); | 104 | s3c24xx_console_init(&s3c24a0_serial_driver, &s3c24a0_uart_inf); |
| 105 | 105 | ||
| 106 | static int __init s3c24a0_serial_init(void) | 106 | static int __init s3c24a0_serial_init(void) |
| 107 | { | 107 | { |
| 108 | return s3c24xx_serial_init(&s3c24a0_serial_drv, &s3c24a0_uart_inf); | 108 | return s3c24xx_serial_init(&s3c24a0_serial_driver, &s3c24a0_uart_inf); |
| 109 | } | 109 | } |
| 110 | 110 | ||
| 111 | static void __exit s3c24a0_serial_exit(void) | 111 | static void __exit s3c24a0_serial_exit(void) |
| 112 | { | 112 | { |
| 113 | platform_driver_unregister(&s3c24a0_serial_drv); | 113 | platform_driver_unregister(&s3c24a0_serial_driver); |
| 114 | } | 114 | } |
| 115 | 115 | ||
| 116 | module_init(s3c24a0_serial_init); | 116 | module_init(s3c24a0_serial_init); |
