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

Manually rebased: bcm27xx/patches-5.15/950-0600-xhci-quirks-add-link-TRB-quirk-for-VL805.patch bcm27xx/patches-5.15/950-0606-usb-xhci-add-VLI_TRB_CACHE_BUG-quirk.patch bcm27xx/patches-5.15/950-0717-usb-xhci-add-a-quirk-for-Superspeed-bulk-OUT-transfe.patch bcm53xx/patches-5.15/180-usb-xhci-add-support-for-performing-fake-doorbell.patch lantiq/patches-5.15/0028-NET-lantiq-various-etop-fixes.patch All other patches automatically rebased Co-authored-by: John Audia <therealgraysky@proton.me> Signed-off-by: John Audia <therealgraysky@proton.me>
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 },
|
|
{ }
|