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

Commit 45863ee2 authored by Maulik Shah's avatar Maulik Shah
Browse files

drivers: irqchip: qcom-pdc: Add PDC IRQ chip support for sm8150



Add PDC interrupt controller chip support for sm8150.

Change-Id: I5fc53d3567f779961d6afe7fe36d47bbaa0f9590
Signed-off-by: default avatarMaulik Shah <mkshah@codeaurora.org>
parent 7a1eafa3
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -542,7 +542,6 @@ static int qcom_pdc_init(struct device_node *node, struct device_node *parent)
	return ret;
}


#ifdef MODULE
static int qcom_pdc_probe(struct platform_device *pdev)
{
@@ -554,6 +553,7 @@ static int qcom_pdc_probe(struct platform_device *pdev)
static const struct of_device_id qcom_pdc_match_table[] = {
	{ .compatible = "qcom,lahaina-pdc" },
	{ .compatible = "qcom,shima-pdc" },
	{ .compatible = "qcom,sm8150-pdc" },
	{ .compatible = "qcom,yupik-pdc" },
	{}
};
@@ -571,6 +571,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_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);
#endif