summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndré Draszik <andre.draszik@linaro.org>2025-07-07 13:50:29 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2025-07-15 20:49:57 +0300
commit8a0ca581402b40f3f13a1b8fc96ae5ab1384a041 (patch)
tree2df9745f7fae44f30fe5122ec6d84bef6ac5b717
parent286d9e5abed003b4b27f9e601e6e2d6abb98294e (diff)
downloadlinux-8a0ca581402b40f3f13a1b8fc96ae5ab1384a041.tar.xz
usb: typec: tcpm/tcpci_maxim: enable PROBE_PREFER_ASYNCHRONOUS
This driver works fine with asynchronous probe. Signed-off-by: André Draszik <andre.draszik@linaro.org> Reviewed-by: Badhri Jagan Sridharan <badhri@google.com> Link: https://lore.kernel.org/r/20250707-max77759-irq-wake-v1-3-d367f633e4bc@linaro.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/usb/typec/tcpm/tcpci_maxim_core.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/typec/tcpm/tcpci_maxim_core.c b/drivers/usb/typec/tcpm/tcpci_maxim_core.c
index 43b0ec2d12ba..19f638650796 100644
--- a/drivers/usb/typec/tcpm/tcpci_maxim_core.c
+++ b/drivers/usb/typec/tcpm/tcpci_maxim_core.c
@@ -572,6 +572,7 @@ MODULE_DEVICE_TABLE(of, max_tcpci_of_match);
static struct i2c_driver max_tcpci_i2c_driver = {
.driver = {
.name = "maxtcpc",
+ .probe_type = PROBE_PREFER_ASYNCHRONOUS,
.of_match_table = max_tcpci_of_match,
.pm = &max_tcpci_pm_ops,
},