Skip to content

Commit

Permalink
TTY: serial: convert drivers/tty/serial/* to use module_platform_driv…
Browse files Browse the repository at this point in the history
…er()

This patch converts the drivers in drivers/tty/serial/* to use the
module_platform_driver() macro which makes the code smaller and a bit
simpler.

Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Jamie Iles <jamie@jamieiles.com>
Cc: Yoichi Yuasa <yuasa@linux-mips.org>
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Acked-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Axel Lin authored and Greg Kroah-Hartman committed Nov 30, 2011
1 parent 782ee87 commit c8381c1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 50 deletions.
12 changes: 1 addition & 11 deletions drivers/tty/serial/8250_dw.c
Original file line number Diff line number Diff line change
Expand Up @@ -177,17 +177,7 @@ static struct platform_driver dw8250_platform_driver = {
.remove = __devexit_p(dw8250_remove),
};

static int __init dw8250_init(void)
{
return platform_driver_register(&dw8250_platform_driver);
}
module_init(dw8250_init);

static void __exit dw8250_exit(void)
{
platform_driver_unregister(&dw8250_platform_driver);
}
module_exit(dw8250_exit);
module_platform_driver(dw8250_platform_driver);

MODULE_AUTHOR("Jamie Iles");
MODULE_LICENSE("GPL");
Expand Down
14 changes: 1 addition & 13 deletions drivers/tty/serial/sc26xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -736,19 +736,7 @@ static struct platform_driver sc26xx_driver = {
},
};

static int __init sc26xx_init(void)
{
return platform_driver_register(&sc26xx_driver);
}

static void __exit sc26xx_exit(void)
{
platform_driver_unregister(&sc26xx_driver);
}

module_init(sc26xx_init);
module_exit(sc26xx_exit);

module_platform_driver(sc26xx_driver);

MODULE_AUTHOR("Thomas Bogendörfer");
MODULE_DESCRIPTION("SC681/SC2692 serial driver");
Expand Down
15 changes: 1 addition & 14 deletions drivers/tty/serial/timbuart.c
Original file line number Diff line number Diff line change
Expand Up @@ -513,20 +513,7 @@ static struct platform_driver timbuart_platform_driver = {
.remove = __devexit_p(timbuart_remove),
};

/*--------------------------------------------------------------------------*/

static int __init timbuart_init(void)
{
return platform_driver_register(&timbuart_platform_driver);
}

static void __exit timbuart_exit(void)
{
platform_driver_unregister(&timbuart_platform_driver);
}

module_init(timbuart_init);
module_exit(timbuart_exit);
module_platform_driver(timbuart_platform_driver);

MODULE_DESCRIPTION("Timberdale UART driver");
MODULE_LICENSE("GPL v2");
Expand Down
13 changes: 1 addition & 12 deletions drivers/tty/serial/vr41xx_siu.c
Original file line number Diff line number Diff line change
Expand Up @@ -961,18 +961,7 @@ static struct platform_driver siu_device_driver = {
},
};

static int __init vr41xx_siu_init(void)
{
return platform_driver_register(&siu_device_driver);
}

static void __exit vr41xx_siu_exit(void)
{
platform_driver_unregister(&siu_device_driver);
}

module_init(vr41xx_siu_init);
module_exit(vr41xx_siu_exit);
module_platform_driver(siu_device_driver);

MODULE_LICENSE("GPL");
MODULE_ALIAS("platform:SIU");

0 comments on commit c8381c1

Please sign in to comment.