Skip to content

Commit

Permalink
x86/simplefb: Use PTR_ERR_OR_ZERO
Browse files Browse the repository at this point in the history
Replace IS_ERR/PTR_ERR

Signed-off-by: Fabian Frederick <fabf@skynet.be>
Link: http://lkml.kernel.org/r/1413576066-26925-1-git-send-email-fabf@skynet.be
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
  • Loading branch information
Fabian Frederick authored and H. Peter Anvin committed Oct 17, 2014
1 parent e8d95ce commit 76ef0db
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions arch/x86/kernel/sysfb_simplefb.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,5 @@ __init int create_simplefb(const struct screen_info *si,

pd = platform_device_register_resndata(NULL, "simple-framebuffer", 0,
&res, 1, mode, sizeof(*mode));
if (IS_ERR(pd))
return PTR_ERR(pd);

return 0;
return PTR_ERR_OR_ZERO(pd);
}

0 comments on commit 76ef0db

Please sign in to comment.