From patchwork Mon Nov 22 22:24:37 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Janne Grunau X-Patchwork-Id: 12693376 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 7BCF4C433EF for ; Mon, 22 Nov 2021 22:52:07 +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=9ZMq67cNZaGtij+DjPO6QDK3rO6S2YG9Da43avnF6Rw=; b=TAP4JTpHX3HSGQ JuGRhWaa1elhE9kyvS3DWLdPeLuS/1Kf3cDa0eH3vKy5M+CR4uLiU6RXxv68WNrOmaYdlvRZbTzu0 LRzi53W6+YqAV6rOJThE6AmqW9rWvgttOywGmiTqnfbbpR725iVrZqVmFBfCWfQheHGyVdF9a5Akw MJeq5yY2Mx3U6JoTq85nktUbAEtxgVJC+7phVh2a2utc0oq4qNAfYmZ27HRmC38p5FJMpo9E/6+1P +nK/G49w4om5eLsY4qmDBM0HWhi23vi/ug2GzMU9qykFL0rRM7g4PzZs8ML8YM1QeMfjAC9cMJSR3 JZswNdqvo7dhYm6BSmUw==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1mpI8j-000Egg-Np; Mon, 22 Nov 2021 22:50:21 +0000 Received: from soltyk.jannau.net ([144.76.91.90]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1mpHjx-0008OS-8R for linux-arm-kernel@lists.infradead.org; Mon, 22 Nov 2021 22:24:47 +0000 Received: from coburn.home.jannau.net (p579ad520.dip0.t-ipconnect.de [87.154.213.32]) by soltyk.jannau.net (Postfix) with ESMTPSA id 75681261B41; Mon, 22 Nov 2021 23:24:41 +0100 (CET) From: Janne Grunau To: Hector Martin , Sven Peter , Alyssa Rosenzweig , Rob Herring , Marc Zyngier , Mark Kettenis , Olof Johansson , Wolfram Sang , Arnd Bergmann , Linus Walleij Cc: linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org, linux-i2c@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH v2 0/3] Apple Arm patform device tree and bindings fixes Date: Mon, 22 Nov 2021 23:24:37 +0100 Message-Id: <20211122222440.21177-1-j@jannau.net> X-Mailer: git-send-email 2.34.0 MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20211122_142445_483508_6BE30166 X-CRM114-Status: GOOD ( 10.63 ) 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 Hej All, this series fixes small issues in the device tree bindings and files for the Apple Arm platform in v5.16-rc1. The fixes are non-critical but make things easier moving forward. Changes since v1: - replaced single value enum in apple,i2c.yaml with const - added Sven Peter's Reviewed-by tags to Patch 2 and 3 thanks Janne The series is available as branch at https://github.com/jannau/linux/tree/apple_m1/dt-fixes-for-5.16_v2 Janne Grunau (3): arm64: dts: apple: change ethernet0 device type to ethernet dt-bindings: i2c: apple,i2c: allow multiple compatibles arm64: dts: apple: add #interrupt-cells property to pinctrl nodes Documentation/devicetree/bindings/i2c/apple,i2c.yaml | 8 ++++---- arch/arm64/boot/dts/apple/t8103-j274.dts | 2 +- arch/arm64/boot/dts/apple/t8103.dtsi | 4 ++++ 3 files changed, 9 insertions(+), 5 deletions(-) Acked-by: Hector Martin