projects
/
GitHub
/
LineageOS
/
G12
/
android_kernel_amlogic_linux-4.9.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cbda45a
)
x86/sysfb: Use PTR_ERR_OR_ZERO
author
Fabian Frederick
<fabf@skynet.be>
Fri, 17 Oct 2014 20:00:53 +0000
(22:00 +0200)
committer
H. Peter Anvin
<hpa@linux.intel.com>
Fri, 17 Oct 2014 20:40:52 +0000
(13:40 -0700)
Replace IS_ERR/PTR_ERR
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Link:
http://lkml.kernel.org/r/1413576053-26761-1-git-send-email-fabf@skynet.be
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
arch/x86/kernel/sysfb.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/x86/kernel/sysfb.c
b/arch/x86/kernel/sysfb.c
index 193ec2ce46c73dfed3be1508d0c04064c4c86585..160386e9fc17d02882d6cad8c10e0d9f3f472da6 100644
(file)
--- a/
arch/x86/kernel/sysfb.c
+++ b/
arch/x86/kernel/sysfb.c
@@
-67,7
+67,7
@@
static __init int sysfb_init(void)
pd = platform_device_register_resndata(NULL, name, 0,
NULL, 0, si, sizeof(*si));
- return
IS_ERR(pd) ? PTR_ERR(pd) : 0
;
+ return
PTR_ERR_OR_ZERO(pd)
;
}
/* must execute after PCI subsystem for EFI quirks */