mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00

Manually rebased: hack-5.15/780-usb-net-MeigLink_modem_support.patch Removed upstreamed: mpc85xx/patches-5.15/110-gpio-mpc8xxx-Fix-support-for-IRQ_TYPE_LEVEL_LOW-flow.patch All other patches automatically rebased. Signed-off-by: Liu Linhui <liulinhui36@gmail.com> Signed-off-by: Liu Linhui <liulinhui36@gmail.com>
26 lines
1.0 KiB
Diff
26 lines
1.0 KiB
Diff
From 0d176e7d075fb7deeb1b137fec56304a402f2f25 Mon Sep 17 00:00:00 2001
|
|
From: Robert Marko <robimarko@gmail.com>
|
|
Date: Thu, 19 May 2022 14:51:53 +0200
|
|
Subject: [PATCH 122/137] mfd: qcom-spmi-pmic: add support for PMP8074
|
|
|
|
Add support for PMP8074 PMIC which is a companion PMIC for the Qualcomm
|
|
IPQ8074 SoC-s.
|
|
|
|
It shares the same subtype identifier as PM8901.
|
|
|
|
Signed-off-by: Robert Marko <robimarko@gmail.com>
|
|
---
|
|
drivers/mfd/qcom-spmi-pmic.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
--- a/drivers/mfd/qcom-spmi-pmic.c
|
|
+++ b/drivers/mfd/qcom-spmi-pmic.c
|
|
@@ -76,6 +76,7 @@ static const struct of_device_id pmic_sp
|
|
{ .compatible = "qcom,pmi8994", .data = (void *)PMI8994_SUBTYPE },
|
|
{ .compatible = "qcom,pmi8998", .data = (void *)PMI8998_SUBTYPE },
|
|
{ .compatible = "qcom,pmk8002", .data = (void *)PMK8002_SUBTYPE },
|
|
+ { .compatible = "qcom,pmp8074", .data = (void *)PM8901_SUBTYPE },
|
|
{ .compatible = "qcom,smb2351", .data = (void *)SMB2351_SUBTYPE },
|
|
{ .compatible = "qcom,spmi-pmic", .data = (void *)COMMON_SUBTYPE },
|
|
{ }
|