From patchwork Tue Aug 27 07:52:12 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jinjie Ruan X-Patchwork-Id: 13779064 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 9D94BC52D6F for ; Tue, 27 Aug 2024 07:51:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender:List-Subscribe:List-Help :List-Post:List-Archive:List-Unsubscribe:List-Id:Content-Type: Content-Transfer-Encoding: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=Uy94MIxLjW1dwoHeccys0nKM8QdoHtJDVEhSmtONnJo=; b=OeJBa8bRADVhtIMLXzGRVQr+Ld wNL5KBxbPVKI2dBm9fxR6+jbNUKa78lNDtZfk356XB0rG7IctLZSn+L0CTGhSVRbwT9on6h94k+R2 s0T6SvSeMr0o8TetlfJ8az42xSmPb2IIFdW0hf4O5wtJ5vjOcBL2IFD5tiJjMjtk1nacbHWHKOpxm jJCbUmn5RkuVWtjKMEg2TwsuloK2uTiu1pDcJSWmxqhJmhgC22NjzKt1euc1vWW0eo+Cccpot0uq5 WpxrJFuROkaZVFxnK/lAV/byHuNbh473gUBaPyWprwwW/Yp0Eov/vnUmNFTOuhTYi0svhzwMWmdMb WhQGoU5g==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.97.1 #2 (Red Hat Linux)) id 1siqzD-0000000AIOT-0YOV; Tue, 27 Aug 2024 07:51:31 +0000 Received: from szxga02-in.huawei.com ([45.249.212.188]) by bombadil.infradead.org with esmtps (Exim 4.97.1 #2 (Red Hat Linux)) id 1siqsV-0000000AGgl-3CoM for linux-arm-kernel@lists.infradead.org; Tue, 27 Aug 2024 07:44:37 +0000 Received: from mail.maildlp.com (unknown [172.19.162.254]) by szxga02-in.huawei.com (SkyGuard) with ESMTP id 4WtKJn3TYmzpSwL; Tue, 27 Aug 2024 15:42:49 +0800 (CST) Received: from kwepemh500013.china.huawei.com (unknown [7.202.181.146]) by mail.maildlp.com (Postfix) with ESMTPS id BF1131800FF; Tue, 27 Aug 2024 15:44:29 +0800 (CST) Received: from huawei.com (10.90.53.73) by kwepemh500013.china.huawei.com (7.202.181.146) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1544.11; Tue, 27 Aug 2024 15:44:28 +0800 From: Jinjie Ruan To: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , CC: Subject: [PATCH -next 0/7] net: Simplified with scoped function Date: Tue, 27 Aug 2024 15:52:12 +0800 Message-ID: <20240827075219.3793198-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: dggems704-chm.china.huawei.com (10.3.19.181) To kwepemh500013.china.huawei.com (7.202.181.146) X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20240827_004436_074422_160DD8A8 X-CRM114-Status: UNSURE ( 5.63 ) 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 Simplify with scoped for each OF child loop and __free(). Jinjie Ruan (7): net: stmmac: dwmac-sun8i: Use for_each_child_of_node_scoped() and __free() net: dsa: realtek: Use for_each_child_of_node_scoped() and __free() net: phy: Fix missing of_node_put() for leds net: mdio: mux-mmioreg: Simplified with scoped function and dev_err_probe() net: mv643xx_eth: Simplify with scoped for each OF child loop net: dsa: microchip: Use scoped function and __free() to simplfy code net: bcmasp: Simplify with scoped for each OF child loop drivers/net/dsa/microchip/ksz_common.c | 12 ++--- drivers/net/dsa/realtek/rtl8366rb.c | 11 ++-- drivers/net/ethernet/broadcom/asp2/bcmasp.c | 18 +++---- drivers/net/ethernet/marvell/mv643xx_eth.c | 5 +- .../net/ethernet/stmicro/stmmac/dwmac-sun8i.c | 20 +++----- drivers/net/mdio/mdio-mux-mmioreg.c | 51 ++++++++----------- drivers/net/phy/phy_device.c | 6 +-- 7 files changed, 46 insertions(+), 77 deletions(-)