From patchwork Thu May 25 12:55:59 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Claudiu Beznea X-Patchwork-Id: 685888 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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 7710CC7EE2D for ; Thu, 25 May 2023 12:57:26 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S241149AbjEYM5Z (ORCPT ); Thu, 25 May 2023 08:57:25 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:40330 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233615AbjEYM5Y (ORCPT ); Thu, 25 May 2023 08:57:24 -0400 Received: from esa.microchip.iphmx.com (esa.microchip.iphmx.com [68.232.153.233]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id BAA08E50; Thu, 25 May 2023 05:57:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=microchip.com; i=@microchip.com; q=dns/txt; s=mchp; t=1685019427; x=1716555427; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=9nT6k4usc1ZdAfXJeFOMGjCgg2EwH9GxhdepY57V2w8=; b=zZr/rJag4FJJi0wxD74HkQhNXS7uPTShDHuieWUgZqJL7bLu9Z/fWzDa tzDw9zwNrndSU+Mh7A0Bg3HK1q+rbTbn8MZnWZPO80kpZYKf1kgo7Ym6c KpwOgZFoJXUddV9e0XmW5rm59ckQF40Fe82R/SCr7p4kV56Yc7Nf1coqd 6hxC+Z7JQOVJZb2uRgAR4GBrfrxu4Nu0Zcn9vhqcaNcq5fY/hCdoi5mA/ rB1pzV3ph5z2jwAyjlR9tLnD7gL2Jn7mTMHucCVs2fxdXBWUYfgGRoIJO GVilIgRE0nD9MKKwK7Mxi3aTtCEFIJ0Wi7ZDHOGFoJdQ7ffs4fG2zruEh Q==; X-IronPort-AV: E=Sophos;i="6.00,191,1681196400"; d="scan'208";a="215446666" X-Amp-Result: SKIPPED(no attachment in message) Received: from unknown (HELO email.microchip.com) ([170.129.1.10]) by esa5.microchip.iphmx.com with ESMTP/TLS/AES256-SHA256; 25 May 2023 05:57:06 -0700 Received: from chn-vm-ex02.mchp-main.com (10.10.85.144) by chn-vm-ex01.mchp-main.com (10.10.85.143) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2507.21; Thu, 25 May 2023 05:57:03 -0700 Received: from m18063-ThinkPad-T460p.mchp-main.com (10.10.115.15) by chn-vm-ex02.mchp-main.com (10.10.85.144) with Microsoft SMTP Server id 15.1.2507.21 via Frontend Transport; Thu, 25 May 2023 05:56:57 -0700 From: Claudiu Beznea To: , , , , , , , , , CC: , , , , "Claudiu Beznea" Subject: [PATCH 2/5] ARM: dts: at91: sama7g5: keep only microchip,sam9x60-pit64b compatible for pit64b Date: Thu, 25 May 2023 15:55:59 +0300 Message-ID: <20230525125602.640855-3-claudiu.beznea@microchip.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230525125602.640855-1-claudiu.beznea@microchip.com> References: <20230525125602.640855-1-claudiu.beznea@microchip.com> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-watchdog@vger.kernel.org SAM9X60 and SAMA7G5 PIT64Bs are 1 to 1 compatible. Thus, there is no need for specific compatible string on SAMA7G5. Signed-off-by: Claudiu Beznea --- arch/arm/boot/dts/sama7g5.dtsi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/boot/dts/sama7g5.dtsi b/arch/arm/boot/dts/sama7g5.dtsi index 886b6209a71e..500b00508621 100644 --- a/arch/arm/boot/dts/sama7g5.dtsi +++ b/arch/arm/boot/dts/sama7g5.dtsi @@ -610,7 +610,7 @@ eic: interrupt-controller@e1628000 { }; pit64b0: timer@e1800000 { - compatible = "microchip,sama7g5-pit64b", "microchip,sam9x60-pit64b"; + compatible = "microchip,sam9x60-pit64b"; reg = <0xe1800000 0x4000>; interrupts = ; clocks = <&pmc PMC_TYPE_PERIPHERAL 70>, <&pmc PMC_TYPE_GCK 70>; @@ -618,7 +618,7 @@ pit64b0: timer@e1800000 { }; pit64b1: timer@e1804000 { - compatible = "microchip,sama7g5-pit64b", "microchip,sam9x60-pit64b"; + compatible = "microchip,sam9x60-pit64b"; reg = <0xe1804000 0x4000>; interrupts = ; clocks = <&pmc PMC_TYPE_PERIPHERAL 71>, <&pmc PMC_TYPE_GCK 71>;