diff options
author | Srinivas Kandagatla <srinivas.kandagatla@st.com> | 2012-10-10 04:32:24 -0400 |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2012-12-03 16:13:33 -0500 |
commit | 6c27b20395d21235b73771a2bcf5325ece94c4c8 (patch) | |
tree | 7bae5421b4547b7950f00f5fa89ffa531b470ab1 /arch/powerpc/platforms/52xx | |
parent | b69f0859dc8e633c5d8c06845811588fe17e68b3 (diff) |
powerpc/mpc52xx: use module_platform_driver macro
This patch removes some code duplication by using
module_platform_driver.
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@st.com>
Signed-off-by: Anatolij Gustschin <agust@denx.de>
Diffstat (limited to 'arch/powerpc/platforms/52xx')
-rw-r--r-- | arch/powerpc/platforms/52xx/mpc52xx_lpbfifo.c | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/arch/powerpc/platforms/52xx/mpc52xx_lpbfifo.c b/arch/powerpc/platforms/52xx/mpc52xx_lpbfifo.c index 2351f9e0fb6f..16150fa430f9 100644 --- a/arch/powerpc/platforms/52xx/mpc52xx_lpbfifo.c +++ b/arch/powerpc/platforms/52xx/mpc52xx_lpbfifo.c | |||
@@ -578,18 +578,4 @@ static struct platform_driver mpc52xx_lpbfifo_driver = { | |||
578 | .probe = mpc52xx_lpbfifo_probe, | 578 | .probe = mpc52xx_lpbfifo_probe, |
579 | .remove = __devexit_p(mpc52xx_lpbfifo_remove), | 579 | .remove = __devexit_p(mpc52xx_lpbfifo_remove), |
580 | }; | 580 | }; |
581 | 581 | module_platform_driver(mpc52xx_lpbfifo_driver); | |
582 | /*********************************************************************** | ||
583 | * Module init/exit | ||
584 | */ | ||
585 | static int __init mpc52xx_lpbfifo_init(void) | ||
586 | { | ||
587 | return platform_driver_register(&mpc52xx_lpbfifo_driver); | ||
588 | } | ||
589 | module_init(mpc52xx_lpbfifo_init); | ||
590 | |||
591 | static void __exit mpc52xx_lpbfifo_exit(void) | ||
592 | { | ||
593 | platform_driver_unregister(&mpc52xx_lpbfifo_driver); | ||
594 | } | ||
595 | module_exit(mpc52xx_lpbfifo_exit); | ||