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 CF74CC433EF for ; Tue, 21 Jun 2022 21:02:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1355699AbiFUVCI (ORCPT ); Tue, 21 Jun 2022 17:02:08 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:38918 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1355745AbiFUU65 (ORCPT ); Tue, 21 Jun 2022 16:58:57 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 9DDBB32EDF; Tue, 21 Jun 2022 13:51:39 -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 4C68C618A8; Tue, 21 Jun 2022 20:51:09 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 15B97C385A5; Tue, 21 Jun 2022 20:51:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1655844668; bh=M5ZujuZ0mG33Rr/sqbkSj4dYDw6RrPY7vPQnXkZ/t0s=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=HOEOe0Stqkyv40fEZUBezDNJ0Nk0Q0RifZnhO3VP0igTH7EzsXFkowjndDqtVP5nz 22LHrDW6CWrP4P2l+4sHkFzy/MkFxo7Ton7l30HK5wd9yx5xq0QSLYN4ZnxyZIS9Dh Lo9IKvMvt9aTE44xJ6ikioNUHpXqzd3+mnNNDVnhQR6nzPdHQ1Syd0UFq9Et6j2IXd fqotmGsszTkkrwDk8GBb/yQj6fxts0XsD5BK8tE4u79vYi+AYNvx/v031RDnPxO+Gx nxFGHJO95qrJWViPgOg0Xa/D7GOxMxjJ5SPPWc6GM0w+ZQHszp/mYVErXzOZRsDAis 2s4EqFw9L5P7g== 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.10 02/11] irqchip/uniphier-aidet: Add compatible string for NX1 SoC Date: Tue, 21 Jun 2022 16:50:56 -0400 Message-Id: <20220621205105.250640-2-sashal@kernel.org> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20220621205105.250640-1-sashal@kernel.org> References: <20220621205105.250640-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 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