diff options
author | Rajendra Nayak <rnayak@codeaurora.org> | 2019-11-08 14:58:17 +0530 |
---|---|---|
committer | Marc Zyngier <maz@kernel.org> | 2019-11-10 18:47:49 +0000 |
commit | 8e4d5a5bde8896c7fa36b173c613dbbbf9d5dc32 (patch) | |
tree | fdf460c296f89075cdaeed4740584ea42085cd3f /drivers | |
parent | 0dcd9f872769547f336741880bc7e721149c8d0a (diff) |
drivers: irqchip: qcom-pdc: Move to an SoC independent compatible
Remove the sdm845 SoC specific compatible to make the driver
easily reusable across other SoC's with the same IP block.
This will reduce further churn adding any SoC specific
compatibles unless really needed.
Signed-off-by: Rajendra Nayak <rnayak@codeaurora.org>
Signed-off-by: Marc Zyngier <maz@kernel.org>
Reviewed-by: Lina Iyer <ilina@codeaurora.org>
Reviewed-by: Stephen Boyd <swboyd@chromium.org>
Link: https://lore.kernel.org/r/20191108092824.9773-7-rnayak@codeaurora.org
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/irqchip/qcom-pdc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/irqchip/qcom-pdc.c b/drivers/irqchip/qcom-pdc.c index faa7d61b9d6c..c175333bb646 100644 --- a/drivers/irqchip/qcom-pdc.c +++ b/drivers/irqchip/qcom-pdc.c @@ -309,4 +309,4 @@ fail: return ret; } -IRQCHIP_DECLARE(pdc_sdm845, "qcom,sdm845-pdc", qcom_pdc_init); +IRQCHIP_DECLARE(qcom_pdc, "qcom,pdc", qcom_pdc_init); |