From patchwork Thu Aug 17 07:19:39 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jinjie Ruan X-Patchwork-Id: 13356063 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 7B948EB64DD for ; Thu, 17 Aug 2023 07:20:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-ID:Date:Subject:CC :To:From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=Fiww+ED+MUWHd0MAmIFQi1WUlXLV+J+qJ7rsy0doXus=; b=V3PEDatf8meXzW j25PWotunoUIaUL6NG1f062dpdOH34v+CnZdi4zXhgivgH9+qts+P1j0rnla2K9xp/iwU4RoABqXf mlTNnf5U9u7y9D2QpSRienFuf/vhMpizNg8sYhXsr+5bK3BFyZkjnl8LO7gjqu/La5P+mfypUpm3L W4vyvab6W3Nk7RgqrEvSWTdQZlK4fil/cwWD6r3LysCAT7t+1x5OjcfFb77dj9iN1Dfevu7UDKk8t 6XBwa6f0AezOz5m/bSFtJYUmeMoKc60JGCReuD++qIjQDVp7VMIpfiMno8tCEghNJ3bRXND++oS+X 8Awl8vWTE97prvfBgvIA==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1qWXJ3-005i9n-0f; Thu, 17 Aug 2023 07:20:33 +0000 Received: from szxga02-in.huawei.com ([45.249.212.188]) by bombadil.infradead.org with esmtps (Exim 4.96 #2 (Red Hat Linux)) id 1qWXIv-005i8O-0R for linux-arm-kernel@lists.infradead.org; Thu, 17 Aug 2023 07:20:30 +0000 Received: from kwepemi500008.china.huawei.com (unknown [172.30.72.57]) by szxga02-in.huawei.com (SkyGuard) with ESMTP id 4RRGYs3g7PzVkkh; Thu, 17 Aug 2023 15:18:09 +0800 (CST) Received: from huawei.com (10.90.53.73) by kwepemi500008.china.huawei.com (7.221.188.139) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2507.31; Thu, 17 Aug 2023 15:20:15 +0800 From: Ruan Jinjie To: , , , , , , , , , , , , , , CC: Subject: [PATCH net-next 0/2] net: Use helper function IS_ERR_OR_NULL() Date: Thu, 17 Aug 2023 15:19:39 +0800 Message-ID: <20230817071941.346590-1-ruanjinjie@huawei.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 X-Originating-IP: [10.90.53.73] X-ClientProxiedBy: dggems702-chm.china.huawei.com (10.3.19.179) To kwepemi500008.china.huawei.com (7.221.188.139) X-CFilter-Loop: Reflected X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20230817_002025_446711_E6ADB309 X-CRM114-Status: UNSURE ( 6.06 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Use IS_ERR_OR_NULL() instead of open-coding it to simplify the code. Ruan Jinjie (2): net: microchip: sparx5: Use helper function IS_ERR_OR_NULL() net: stmmac: Use helper function IS_ERR_OR_NULL() drivers/net/ethernet/microchip/sparx5/sparx5_tc_flower.c | 2 +- drivers/net/ethernet/stmicro/stmmac/stmmac_main.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) Reviewed-by: Leon Romanovsky