Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 156497
b: refs/heads/master
c: 8fe70a5
h: refs/heads/master
i:
  156495: 8835c32
v: v3
  • Loading branch information
Ramax Lo authored and Ben Dooks committed Jul 30, 2009
1 parent 56703cd commit cb91c4c
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 165f5f64199f972a21f21effc125d89ed2488e58
refs/heads/master: 8fe70a5f7167e02bbc18086970f0e92a5e55b80d
8 changes: 4 additions & 4 deletions trunk/drivers/serial/s3c2400.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ static int s3c2400_serial_probe(struct platform_device *dev)
return s3c24xx_serial_probe(dev, &s3c2400_uart_inf);
}

static struct platform_driver s3c2400_serial_drv = {
static struct platform_driver s3c2400_serial_driver = {
.probe = s3c2400_serial_probe,
.remove = __devexit_p(s3c24xx_serial_remove),
.driver = {
Expand All @@ -85,16 +85,16 @@ static struct platform_driver s3c2400_serial_drv = {
},
};

s3c24xx_console_init(&s3c2400_serial_drv, &s3c2400_uart_inf);
s3c24xx_console_init(&s3c2400_serial_driver, &s3c2400_uart_inf);

static inline int s3c2400_serial_init(void)
{
return s3c24xx_serial_init(&s3c2400_serial_drv, &s3c2400_uart_inf);
return s3c24xx_serial_init(&s3c2400_serial_driver, &s3c2400_uart_inf);
}

static inline void s3c2400_serial_exit(void)
{
platform_driver_unregister(&s3c2400_serial_drv);
platform_driver_unregister(&s3c2400_serial_driver);
}

module_init(s3c2400_serial_init);
Expand Down
8 changes: 4 additions & 4 deletions trunk/drivers/serial/s3c2410.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ static int s3c2410_serial_probe(struct platform_device *dev)
return s3c24xx_serial_probe(dev, &s3c2410_uart_inf);
}

static struct platform_driver s3c2410_serial_drv = {
static struct platform_driver s3c2410_serial_driver = {
.probe = s3c2410_serial_probe,
.remove = __devexit_p(s3c24xx_serial_remove),
.driver = {
Expand All @@ -97,16 +97,16 @@ static struct platform_driver s3c2410_serial_drv = {
},
};

s3c24xx_console_init(&s3c2410_serial_drv, &s3c2410_uart_inf);
s3c24xx_console_init(&s3c2410_serial_driver, &s3c2410_uart_inf);

static int __init s3c2410_serial_init(void)
{
return s3c24xx_serial_init(&s3c2410_serial_drv, &s3c2410_uart_inf);
return s3c24xx_serial_init(&s3c2410_serial_driver, &s3c2410_uart_inf);
}

static void __exit s3c2410_serial_exit(void)
{
platform_driver_unregister(&s3c2410_serial_drv);
platform_driver_unregister(&s3c2410_serial_driver);
}

module_init(s3c2410_serial_init);
Expand Down
8 changes: 4 additions & 4 deletions trunk/drivers/serial/s3c2412.c
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ static int s3c2412_serial_probe(struct platform_device *dev)
return s3c24xx_serial_probe(dev, &s3c2412_uart_inf);
}

static struct platform_driver s3c2412_serial_drv = {
static struct platform_driver s3c2412_serial_driver = {
.probe = s3c2412_serial_probe,
.remove = __devexit_p(s3c24xx_serial_remove),
.driver = {
Expand All @@ -130,16 +130,16 @@ static struct platform_driver s3c2412_serial_drv = {
},
};

s3c24xx_console_init(&s3c2412_serial_drv, &s3c2412_uart_inf);
s3c24xx_console_init(&s3c2412_serial_driver, &s3c2412_uart_inf);

static inline int s3c2412_serial_init(void)
{
return s3c24xx_serial_init(&s3c2412_serial_drv, &s3c2412_uart_inf);
return s3c24xx_serial_init(&s3c2412_serial_driver, &s3c2412_uart_inf);
}

static inline void s3c2412_serial_exit(void)
{
platform_driver_unregister(&s3c2412_serial_drv);
platform_driver_unregister(&s3c2412_serial_driver);
}

module_init(s3c2412_serial_init);
Expand Down
8 changes: 4 additions & 4 deletions trunk/drivers/serial/s3c2440.c
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ static int s3c2440_serial_probe(struct platform_device *dev)
return s3c24xx_serial_probe(dev, &s3c2440_uart_inf);
}

static struct platform_driver s3c2440_serial_drv = {
static struct platform_driver s3c2440_serial_driver = {
.probe = s3c2440_serial_probe,
.remove = __devexit_p(s3c24xx_serial_remove),
.driver = {
Expand All @@ -160,16 +160,16 @@ static struct platform_driver s3c2440_serial_drv = {
},
};

s3c24xx_console_init(&s3c2440_serial_drv, &s3c2440_uart_inf);
s3c24xx_console_init(&s3c2440_serial_driver, &s3c2440_uart_inf);

static int __init s3c2440_serial_init(void)
{
return s3c24xx_serial_init(&s3c2440_serial_drv, &s3c2440_uart_inf);
return s3c24xx_serial_init(&s3c2440_serial_driver, &s3c2440_uart_inf);
}

static void __exit s3c2440_serial_exit(void)
{
platform_driver_unregister(&s3c2440_serial_drv);
platform_driver_unregister(&s3c2440_serial_driver);
}

module_init(s3c2440_serial_init);
Expand Down
8 changes: 4 additions & 4 deletions trunk/drivers/serial/s3c24a0.c
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ static int s3c24a0_serial_probe(struct platform_device *dev)
return s3c24xx_serial_probe(dev, &s3c24a0_uart_inf);
}

static struct platform_driver s3c24a0_serial_drv = {
static struct platform_driver s3c24a0_serial_driver = {
.probe = s3c24a0_serial_probe,
.remove = __devexit_p(s3c24xx_serial_remove),
.driver = {
Expand All @@ -101,16 +101,16 @@ static struct platform_driver s3c24a0_serial_drv = {
},
};

s3c24xx_console_init(&s3c24a0_serial_drv, &s3c24a0_uart_inf);
s3c24xx_console_init(&s3c24a0_serial_driver, &s3c24a0_uart_inf);

static int __init s3c24a0_serial_init(void)
{
return s3c24xx_serial_init(&s3c24a0_serial_drv, &s3c24a0_uart_inf);
return s3c24xx_serial_init(&s3c24a0_serial_driver, &s3c24a0_uart_inf);
}

static void __exit s3c24a0_serial_exit(void)
{
platform_driver_unregister(&s3c24a0_serial_drv);
platform_driver_unregister(&s3c24a0_serial_driver);
}

module_init(s3c24a0_serial_init);
Expand Down

0 comments on commit cb91c4c

Please sign in to comment.