From mboxrd@z Thu Jan 1 00:00:00 1970 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751315AbeACQZX (ORCPT + 1 other); Wed, 3 Jan 2018 11:25:23 -0500 Received: from terminus.zytor.com ([65.50.211.136]:48073 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750979AbeACQZU (ORCPT ); Wed, 3 Jan 2018 11:25:20 -0500 Date: Wed, 3 Jan 2018 08:19:58 -0800 From: tip-bot for Vasyl Gomonovych Message-ID: Cc: gomonovych@gmail.com, tglx@linutronix.de, peterz@infradead.org, hpa@zytor.com, ard.biesheuvel@linaro.org, linux-kernel@vger.kernel.org, tbaicar@codeaurora.org, arvind.yadav.cs@gmail.com, matt@codeblueprint.co.uk, sboyd@codeaurora.org, torvalds@linux-foundation.org, mingo@kernel.org Reply-To: torvalds@linux-foundation.org, sboyd@codeaurora.org, matt@codeblueprint.co.uk, arvind.yadav.cs@gmail.com, tbaicar@codeaurora.org, mingo@kernel.org, hpa@zytor.com, peterz@infradead.org, gomonovych@gmail.com, tglx@linutronix.de, linux-kernel@vger.kernel.org, ard.biesheuvel@linaro.org In-Reply-To: <20180102181042.19074-4-ard.biesheuvel@linaro.org> References: <20180102181042.19074-4-ard.biesheuvel@linaro.org> To: linux-tip-commits@vger.kernel.org Subject: [tip:efi/core] efi: Use PTR_ERR_OR_ZERO() Git-Commit-ID: 50342b2e498777df237a40a23eebc02f0935e636 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Return-Path: Commit-ID: 50342b2e498777df237a40a23eebc02f0935e636 Gitweb: https://git.kernel.org/tip/50342b2e498777df237a40a23eebc02f0935e636 Author: Vasyl Gomonovych AuthorDate: Tue, 2 Jan 2018 18:10:40 +0000 Committer: Ingo Molnar CommitDate: Wed, 3 Jan 2018 14:03:48 +0100 efi: Use PTR_ERR_OR_ZERO() Fix ptr_ret.cocci warnings: drivers/firmware/efi/efi.c:610:8-14: WARNING: PTR_ERR_OR_ZERO can be used Use PTR_ERR_OR_ZERO rather than if(IS_ERR(...)) + PTR_ERR Generated by: scripts/coccinelle/api/ptr_ret.cocci Signed-off-by: Vasyl Gomonovych Signed-off-by: Matt Fleming Signed-off-by: Ard Biesheuvel Cc: Arvind Yadav Cc: Linus Torvalds Cc: Peter Zijlstra Cc: Stephen Boyd Cc: Thomas Gleixner Cc: Tyler Baicar Cc: linux-efi@vger.kernel.org Link: http://lkml.kernel.org/r/20180102181042.19074-4-ard.biesheuvel@linaro.org Signed-off-by: Ingo Molnar --- drivers/firmware/efi/efi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/firmware/efi/efi.c b/drivers/firmware/efi/efi.c index 557a478..8ce70c2 100644 --- a/drivers/firmware/efi/efi.c +++ b/drivers/firmware/efi/efi.c @@ -608,7 +608,7 @@ static int __init efi_load_efivars(void) return 0; pdev = platform_device_register_simple("efivars", 0, NULL, 0); - return IS_ERR(pdev) ? PTR_ERR(pdev) : 0; + return PTR_ERR_OR_ZERO(pdev); } device_initcall(efi_load_efivars); #endif