drivers/parport/parport_ip32.c: use PTR_ERR_OR_ZERO
replace IS_ERR/PTR_ERR Signed-off-by: Fabian Frederick <fabf@skynet.be> Cc: Wolfram Sang <wsa@the-dreams.de> Cc: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
69361eef90
commit
340f365dd9
1 changed files with 1 additions and 1 deletions
|
@ -2204,7 +2204,7 @@ static int __init parport_ip32_init(void)
|
|||
{
|
||||
pr_info(PPIP32 "SGI IP32 built-in parallel port driver v0.6\n");
|
||||
this_port = parport_ip32_probe_port();
|
||||
return IS_ERR(this_port) ? PTR_ERR(this_port) : 0;
|
||||
return PTR_ERR_OR_ZERO(this_port);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue