diff mbox series

usb: dwc3: qcom: add ACPI device id for sc8180x

Message ID 20210301075745.20544-1-shawn.guo@linaro.org
State Accepted
Commit 1edbff9c80ed32071fffa7dbaaea507fdb21ff2d
Headers show
Series usb: dwc3: qcom: add ACPI device id for sc8180x | expand

Commit Message

Shawn Guo March 1, 2021, 7:57 a.m. UTC
It enables USB Host support for sc8180x ACPI boot, both the standalone
one and the one behind URS (USB Role Switch).  And they share the
the same dwc3_acpi_pdata with sdm845.

Signed-off-by: Shawn Guo <shawn.guo@linaro.org>

---
 drivers/usb/dwc3/dwc3-qcom.c | 2 ++
 1 file changed, 2 insertions(+)

-- 
2.17.1

Comments

patchwork-bot+linux-arm-msm@kernel.org May 26, 2021, 7:03 p.m. UTC | #1
Hello:

This patch was applied to qcom/linux.git (refs/heads/for-next):

On Mon,  1 Mar 2021 15:57:45 +0800 you wrote:
> It enables USB Host support for sc8180x ACPI boot, both the standalone

> one and the one behind URS (USB Role Switch).  And they share the

> the same dwc3_acpi_pdata with sdm845.

> 

> Signed-off-by: Shawn Guo <shawn.guo@linaro.org>

> ---

>  drivers/usb/dwc3/dwc3-qcom.c | 2 ++

>  1 file changed, 2 insertions(+)


Here is the summary with links:
  - usb: dwc3: qcom: add ACPI device id for sc8180x
    https://git.kernel.org/qcom/c/1edbff9c80ed

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
diff mbox series

Patch

diff --git a/drivers/usb/dwc3/dwc3-qcom.c b/drivers/usb/dwc3/dwc3-qcom.c
index 846a47be6df7..d8850f9ccb62 100644
--- a/drivers/usb/dwc3/dwc3-qcom.c
+++ b/drivers/usb/dwc3/dwc3-qcom.c
@@ -938,6 +938,8 @@  static const struct dwc3_acpi_pdata sdm845_acpi_urs_pdata = {
 static const struct acpi_device_id dwc3_qcom_acpi_match[] = {
 	{ "QCOM2430", (unsigned long)&sdm845_acpi_pdata },
 	{ "QCOM0304", (unsigned long)&sdm845_acpi_urs_pdata },
+	{ "QCOM0497", (unsigned long)&sdm845_acpi_urs_pdata },
+	{ "QCOM04A6", (unsigned long)&sdm845_acpi_pdata },
 	{ },
 };
 MODULE_DEVICE_TABLE(acpi, dwc3_qcom_acpi_match);