Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 00e0d3c3 authored by Fengguang Wu's avatar Fengguang Wu Committed by Greg Kroah-Hartman
Browse files

staging: fpgaboot: fix coccinelle warnings



drivers/staging/gs_fpgaboot/gs_fpgaboot.c:305:1-3: WARNING: PTR_RET can be used

 Use PTR_ERR_OR_ZERO rather than if(IS_ERR(...)) + PTR_ERR

Generated by: coccinelle/api/ptr_ret.cocci

CC: Insop Song <insop.song@gainspeed.com>
Signed-off-by: default avatarFengguang Wu <fengguang.wu@intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7a01d05e
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -302,10 +302,7 @@ static int init_driver(void)
{
	firmware_pdev = platform_device_register_simple("fpgaboot", -1,
							 NULL, 0);
	if (IS_ERR(firmware_pdev))
		return PTR_ERR(firmware_pdev);

	return 0;
	return PTR_ERR_OR_ZERO(firmware_pdev);
}

static void finish_driver(void)