diff options
author | Thomas Meyer <thomas@m3y3r.de> | 2012-08-06 13:51:16 -0400 |
---|---|---|
committer | Geert Uytterhoeven <geert@linux-m68k.org> | 2012-08-18 09:16:00 -0400 |
commit | f82735d55056b200eab19749398457a2f534306b (patch) | |
tree | 237c10d1f0ca5f633640673bfc02d8d530ae1333 /arch/m68k | |
parent | e786f6bfd62e4da8c07c8e208a881c2b855a534a (diff) |
m68k: Use PTR_RET rather than if(IS_ERR(...)) + PTR_ERR
The semantic patch that makes this change is available
in scripts/coccinelle/api/ptr_ret.cocci.
More information about semantic patching is available at
http://coccinelle.lip6.fr/
Signed-off-by: Thomas Meyer <thomas@m3y3r.de>
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Diffstat (limited to 'arch/m68k')
-rw-r--r-- | arch/m68k/kernel/time.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/arch/m68k/kernel/time.c b/arch/m68k/kernel/time.c index 707f0573ec6b..5d0bcaad2e55 100644 --- a/arch/m68k/kernel/time.c +++ b/arch/m68k/kernel/time.c | |||
@@ -100,10 +100,7 @@ static int __init rtc_init(void) | |||
100 | return -ENODEV; | 100 | return -ENODEV; |
101 | 101 | ||
102 | pdev = platform_device_register_simple("rtc-generic", -1, NULL, 0); | 102 | pdev = platform_device_register_simple("rtc-generic", -1, NULL, 0); |
103 | if (IS_ERR(pdev)) | 103 | return PTR_RET(pdev); |
104 | return PTR_ERR(pdev); | ||
105 | |||
106 | return 0; | ||
107 | } | 104 | } |
108 | 105 | ||
109 | module_init(rtc_init); | 106 | module_init(rtc_init); |