From mboxrd@z Thu Jan 1 00:00:00 1970 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 08561C433F5 for ; Thu, 31 Mar 2022 15:48:27 +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:References:In-Reply-To: Message-ID:Subject:Cc:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=Cqo708AT9ZawCofon5qpo+wwgDTg3/XDzjshj06+Zr8=; b=LFOOX6LMFohsd3 PWwxM4iQOl+aiJk46tbl59qj8Ov24n3rxdmu9XsFNnLy6R1a0dbMXgBl9u5w3RxZllZ1hAsRGWr00 Gp37ezTeiaOdq7d8PFr5KttGZJeIcWpbeMwx97bafZN3ynurNoXivSw2R3r0lzPXCvs0YRtelS9Uq KigVyeRFY0NtoJH+nGKUOPy9Tv+Jk4PQVje3GB38rzeYZLSptSZ8a21dAsVUiJQNZOStWhjGaJhZ5 DyDwXeH+AHt9Dx5S79co3jupNGBWcOeTRmXGFWScgtqn+F1x2BHRbB+RLyGZUtg6N60sovjN5Xhcc 0YWKA1g+Geo5w6tCbmGQ==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1nZx0y-002nYJ-CP; Thu, 31 Mar 2022 15:47:13 +0000 Received: from dfw.source.kernel.org ([2604:1380:4641:c500::1]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1nZx0d-002nOs-3l for linux-arm-kernel@lists.infradead.org; Thu, 31 Mar 2022 15:46:52 +0000 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 1DBDB609E9; Thu, 31 Mar 2022 15:46:50 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 40105C340ED; Thu, 31 Mar 2022 15:46:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1648741609; bh=hiwngJ/tEvf+cZOHAUZeS2nj7bIbpDJdxWUISWNpTvo=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=d0yDW+1fCXEfQzsqgq0cpK6YiiVHyxtDuZp07VQD+Ukdh/dw7K0S3YtyO9/FkoqSQ su39AWF9ntRt5wI5UKlJ+VIOljQZtFyacZAgVH/kDzBfkN9Aa7NoqNCM7lE1zJ8tap KI8aHdxEMzjIc2NnAfOVqki+q4y4geHApCqdiezeLbpB2H2xmtwQEYE+FJtFcHvbjU yDXUmtQ+viC+KbE66nc6o8dAC7DuGXVde5Taa4/NNrUW6ft45wSY2ILoSHMa2Lxa0X wPSQxVlhWGCbdRqcRM/gdLubfalVcF2nR/TT9nEeI5IMK40rPjpfXKSbXtrAtkAbDs qAzxfJ1BZeq/A== Date: Thu, 31 Mar 2022 08:46:47 -0700 From: Jakub Kicinski To: Qing Wang Cc: "David S. Miller" , Michal Simek , netdev@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] net: ethernet: xilinx: use of_property_read_bool() instead of of_get_property Message-ID: <20220331084647.679aaaa5@kernel.org> In-Reply-To: <1648728535-37436-1-git-send-email-wangqing@vivo.com> References: <1648728535-37436-1-git-send-email-wangqing@vivo.com> MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20220331_084651_230136_4A3ECF2A X-CRM114-Status: GOOD ( 10.23 ) 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: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Thu, 31 Mar 2022 05:08:55 -0700 Qing Wang wrote: > From: Wang Qing > > "little-endian" has no specific content, use more helper function > of_property_read_bool() instead of of_get_property() > > Signed-off-by: Wang Qing # Form letter - net-next is closed We have already sent the networking pull request for 5.18 and therefore net-next is closed for new drivers, features, code refactoring and optimizations. We are currently accepting bug fixes only. Please repost when net-next reopens after 5.18-rc1 is cut. RFC patches sent for review only are obviously welcome at any time. _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel