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 6C918C43334 for ; Tue, 21 Jun 2022 21:01:12 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1355776AbiFUVBK (ORCPT ); Tue, 21 Jun 2022 17:01:10 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:55032 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1355353AbiFUU5a (ORCPT ); Tue, 21 Jun 2022 16:57:30 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 7C06A3204F; Tue, 21 Jun 2022 13:50:57 -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 5C8C261899; Tue, 21 Jun 2022 20:50:14 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2690DC341C7; Tue, 21 Jun 2022 20:50:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1655844613; bh=M5ZujuZ0mG33Rr/sqbkSj4dYDw6RrPY7vPQnXkZ/t0s=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=mGdGpr3lw3Ol4cIknHhLXsFH+I+j86Iu1U7tY4iR6fH4HAURMCTQtAbQOfwRqfPEG mPgTPkU5vluk6GoJPJjUBwXXxpFInm38W47BJDIZmVUK2MYbnL0lfaDGaLVMxzszMt XkJx3xhIjwomgkd2my9cZ4tWaWIP5ausp8AxsTBlpvw9aMtFq5phVoSPpMJGAyZ2/O +WGJskVYBDK3X3G+dlbfF7DlIXA1cl6+V9y7naby5q8XltxyyD31b2zeAEoDE1loHx hgGLFoscQBZYZ40cNUfH5XIz6OG0dRjvnHEvY9mCH12qCPxjR4slvzNGRuZ227Hejh y9iiWCyskjHDw== 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 5.17 02/20] irqchip/uniphier-aidet: Add compatible string for NX1 SoC Date: Tue, 21 Jun 2022 16:49:52 -0400 Message-Id: <20220621205010.250185-2-sashal@kernel.org> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20220621205010.250185-1-sashal@kernel.org> References: <20220621205010.250185-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: stable@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 89121b39be26..716b1bb88bf2 100644 --- a/drivers/irqchip/irq-uniphier-aidet.c +++ b/drivers/irqchip/irq-uniphier-aidet.c @@ -237,6 +237,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