diff options
| author | Rusty Russell <[email protected]> | 2013-07-15 01:50:32 +0000 |
|---|---|---|
| committer | Rusty Russell <[email protected]> | 2013-07-15 01:55:01 +0000 |
| commit | 8c6ffba0eddc8c110dbf444f51354ce42069abfc (patch) | |
| tree | 1055a1cfdf7bd79d6e2c4b969d412780ff2d2209 /arch/m68k/amiga/platform.c | |
| parent | PTR_RET is now PTR_ERR_OR_ZERO (diff) | |
| download | kernel-8c6ffba0eddc8c110dbf444f51354ce42069abfc.tar.gz kernel-8c6ffba0eddc8c110dbf444f51354ce42069abfc.zip | |
PTR_RET is now PTR_ERR_OR_ZERO(): Replace most.
Sweep of the simple cases.
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: Julia Lawall <[email protected]>
Signed-off-by: Rusty Russell <[email protected]>
Acked-by: David S. Miller <[email protected]>
Acked-by: Benjamin Herrenschmidt <[email protected]>
Diffstat (limited to 'arch/m68k/amiga/platform.c')
| -rw-r--r-- | arch/m68k/amiga/platform.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/m68k/amiga/platform.c b/arch/m68k/amiga/platform.c index 6083088c0cca..dacd9f911f71 100644 --- a/arch/m68k/amiga/platform.c +++ b/arch/m68k/amiga/platform.c @@ -56,7 +56,7 @@ static int __init amiga_init_bus(void) n = AMIGAHW_PRESENT(ZORRO3) ? 4 : 2; pdev = platform_device_register_simple("amiga-zorro", -1, zorro_resources, n); - return PTR_RET(pdev); + return PTR_ERR_OR_ZERO(pdev); } subsys_initcall(amiga_init_bus); |
