aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/arch/x86/kernel/sysfb.c
diff options
context:
space:
mode:
authorFabian Frederick <fabf@skynet.be>2014-10-17 22:00:53 +0200
committerH. Peter Anvin <hpa@linux.intel.com>2014-10-17 13:40:52 -0700
commite8d95ce9705c6683f57dc146b8c726c4d2242a52 (patch)
tree8cd1202b7905b82a22de298d930f24f4d0dd57c3 /arch/x86/kernel/sysfb.c
parentx86, cpuid: Use PTR_ERR_OR_ZERO (diff)
downloadwireguard-linux-e8d95ce9705c6683f57dc146b8c726c4d2242a52.tar.xz
wireguard-linux-e8d95ce9705c6683f57dc146b8c726c4d2242a52.zip
x86/sysfb: Use PTR_ERR_OR_ZERO
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>
Diffstat (limited to 'arch/x86/kernel/sysfb.c')
-rw-r--r--arch/x86/kernel/sysfb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/sysfb.c b/arch/x86/kernel/sysfb.c
index 193ec2ce46c7..160386e9fc17 100644
--- 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 */