commit | e8d95ce9705c6683f57dc146b8c726c4d2242a52 | [log] [tgz] |
---|---|---|
author | Fabian Frederick <fabf@skynet.be> | Fri Oct 17 22:00:53 2014 +0200 |
committer | H. Peter Anvin <hpa@linux.intel.com> | Fri Oct 17 13:40:52 2014 -0700 |
tree | 8cd1202b7905b82a22de298d930f24f4d0dd57c3 | |
parent | cbda45a2d4798912637b5b792c1c7a97c8d8b080 [diff] [blame] |
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>
diff --git a/arch/x86/kernel/sysfb.c b/arch/x86/kernel/sysfb.c index 193ec2c..160386e 100644 --- a/arch/x86/kernel/sysfb.c +++ b/arch/x86/kernel/sysfb.c
@@ -67,7 +67,7 @@ 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 */