Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

usb: typec: ucsi_glink: drop NO_PARTNER_PDOS quirk for sm8550 / sm8650

The Qualcomm SM8550 (and via a fallback compat SM8650) firmware properly
handles the GET_PDOS command, it sends the CCI_BUSY notification,
and then follows with the CCI_COMMAND_COMPLETE event. Stop using the quirk
for those two platforms.

Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Reviewed-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
Link: https://lore.kernel.org/r/20240408-qcom-ucsi-fixes-bis-v1-2-716c145ca4b1@linaro.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Dmitry Baryshkov and committed by
Greg Kroah-Hartman
c82d6cbb 0c5794f7

+1 -1
+1 -1
drivers/usb/typec/ucsi/ucsi_glink.c
··· 321 321 { .compatible = "qcom,sc8280xp-pmic-glink", .data = &quirk_sc8280xp, }, 322 322 { .compatible = "qcom,sm8350-pmic-glink", .data = &quirk_sc8180x, }, 323 323 { .compatible = "qcom,sm8450-pmic-glink", .data = &quirk_sm8450, }, 324 - { .compatible = "qcom,sm8550-pmic-glink", .data = &quirk_sc8280xp, }, 324 + { .compatible = "qcom,sm8550-pmic-glink", .data = &quirk_sm8450, }, 325 325 {} 326 326 }; 327 327