Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 49b94cdf authored by Maulik Shah's avatar Maulik Shah Committed by Veera Vegivada
Browse files

irqchip: qcom-pdc: Add PDC irqchip support for sm6150



Add irqchip support for sm6150.

Change-Id: I05472fcc473b16272f4f3b74e1d99cbef077b189
Signed-off-by: default avatarMaulik Shah <mkshah@codeaurora.org>
parent 423fa0fd
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
// SPDX-License-Identifier: GPL-2.0-only
/*
 * Copyright (c) 2017-2020, The Linux Foundation. All rights reserved.
 * Copyright (c) 2017-2021, The Linux Foundation. All rights reserved.
 */

#include <linux/err.h>
@@ -554,6 +554,7 @@ static const struct of_device_id qcom_pdc_match_table[] = {
	{ .compatible = "qcom,lahaina-pdc" },
	{ .compatible = "qcom,shima-pdc" },
	{ .compatible = "qcom,sm8150-pdc" },
	{ .compatible = "qcom,sm6150-pdc" },
	{ .compatible = "qcom,yupik-pdc" },
	{}
};
@@ -571,6 +572,7 @@ module_platform_driver(qcom_pdc_driver);
IRQCHIP_DECLARE(qcom_pdc, "qcom,pdc", qcom_pdc_init);
IRQCHIP_DECLARE(pdc_lahaina, "qcom,lahaina-pdc", qcom_pdc_init);
IRQCHIP_DECLARE(pdc_shima, "qcom,shima-pdc", qcom_pdc_init);
IRQCHIP_DECLARE(pdc_sm6150, "qcom,sm6150-pdc", qcom_pdc_init);
IRQCHIP_DECLARE(pdc_sm8150, "qcom,sm8150-pdc", qcom_pdc_init);
IRQCHIP_DECLARE(pdc_yupik, "qcom,yupik-pdc", qcom_pdc_init);
IRQCHIP_DECLARE(pdc_sdxlemur, "qcom,sdxlemur-pdc", qcom_pdc_init);