diff options
author | Adrian-Leonard Radu <ady8radu@gmail.com> | 2013-03-09 22:07:00 -0500 |
---|---|---|
committer | Michael Ellerman <michael@ellerman.id.au> | 2013-04-17 23:03:48 -0400 |
commit | 09652b00cd249a1f1a2cd1a70d31e880f24d06cc (patch) | |
tree | 58998dab4044865704d120ce3bf4b2496778ba07 /arch/powerpc/sysdev | |
parent | db38f290cadc16304b84f6d18cbaa06251dde875 (diff) |
powerpc: Use PTR_RET instead of IS_ERR/PTR_ERR
Signed-off-by: Adrian-Leonard Radu <ady8radu@gmail.com>
Acked-by: Geoff Levand <geoff@infradead.org>
Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/sysdev')
-rw-r--r-- | arch/powerpc/sysdev/rtc_cmos_setup.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/arch/powerpc/sysdev/rtc_cmos_setup.c b/arch/powerpc/sysdev/rtc_cmos_setup.c index 9afba924e94f..af79e1ea74b6 100644 --- a/arch/powerpc/sysdev/rtc_cmos_setup.c +++ b/arch/powerpc/sysdev/rtc_cmos_setup.c | |||
@@ -62,10 +62,7 @@ static int __init add_rtc(void) | |||
62 | pd = platform_device_register_simple("rtc_cmos", -1, | 62 | pd = platform_device_register_simple("rtc_cmos", -1, |
63 | &res[0], num_res); | 63 | &res[0], num_res); |
64 | 64 | ||
65 | if (IS_ERR(pd)) | 65 | return PTR_RET(pd); |
66 | return PTR_ERR(pd); | ||
67 | |||
68 | return 0; | ||
69 | } | 66 | } |
70 | fs_initcall(add_rtc); | 67 | fs_initcall(add_rtc); |
71 | 68 | ||