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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id CB664C433EF for ; Tue, 21 Jun 2022 21:05:06 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1355788AbiFUVD1 (ORCPT ); Tue, 21 Jun 2022 17:03:27 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:39150 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1356131AbiFUU7b (ORCPT ); Tue, 21 Jun 2022 16:59:31 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 3C13133E17; Tue, 21 Jun 2022 13:52:16 -0700 (PDT) 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 0AA8361882; Tue, 21 Jun 2022 20:51:34 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id CA05DC385A2; Tue, 21 Jun 2022 20:51:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1655844693; bh=mIKC5xOk8DCT9W6kql28/G4V3epGSHnj9RDl/rWzKvM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=oqGUwWABRkkHoG5KFL9QfNrhKUW3KcU3gmN/lREMK7Oh8pBH3wCVGUWywZo39hr5k 0+Ue0abXtA4IC4NDu3IkbWpg1xXJNv0Fpkbfhq/gslBzWuLSxLyWZldgx4GwX9WuQS +08MYCkkG9Cv2+ueQ95XurEN9rI9PkMX/5Ld8dsQ6VUJOXryj2JQYjtguDqUE0ptOD 28vHiEPUomAIW7/d63gkWi+WM5EFcI0gCGDdkMmnzuz5qbkxgFa7T+SHDhkkclpyRD IcAzlyiho4BhP2qkTFG6g2xw3snEhnFP4OPyHW0czXVdZXo12LrCpFX8bjxnqQls4Q bCQZqyS6pb4sw== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Kunihiko Hayashi , Marc Zyngier , Sasha Levin , tglx@linutronix.de, mhiramat@kernel.org, linux-arm-kernel@lists.infradead.org Subject: [PATCH AUTOSEL 4.19 2/7] irqchip/uniphier-aidet: Add compatible string for NX1 SoC Date: Tue, 21 Jun 2022 16:51:24 -0400 Message-Id: <20220621205130.250874-2-sashal@kernel.org> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20220621205130.250874-1-sashal@kernel.org> References: <20220621205130.250874-1-sashal@kernel.org> MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Kunihiko Hayashi [ Upstream commit e3f056a7aafabe4ac3ad4b7465ba821b44a7e639 ] Add the compatible string to support UniPhier NX1 SoC, which has the same kinds of controls as the other UniPhier SoCs. Signed-off-by: Kunihiko Hayashi Signed-off-by: Marc Zyngier Link: https://lore.kernel.org/r/1653023822-19229-3-git-send-email-hayashi.kunihiko@socionext.com Signed-off-by: Sasha Levin --- drivers/irqchip/irq-uniphier-aidet.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/irqchip/irq-uniphier-aidet.c b/drivers/irqchip/irq-uniphier-aidet.c index 7ba7f253470e..b400f084e2cb 100644 --- a/drivers/irqchip/irq-uniphier-aidet.c +++ b/drivers/irqchip/irq-uniphier-aidet.c @@ -247,6 +247,7 @@ static const struct of_device_id uniphier_aidet_match[] = { { .compatible = "socionext,uniphier-ld11-aidet" }, { .compatible = "socionext,uniphier-ld20-aidet" }, { .compatible = "socionext,uniphier-pxs3-aidet" }, + { .compatible = "socionext,uniphier-nx1-aidet" }, { /* sentinel */ } }; -- 2.35.1