From 8a0ca581402b40f3f13a1b8fc96ae5ab1384a041 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20Draszik?= Date: Mon, 7 Jul 2025 11:50:29 +0100 Subject: [PATCH] usb: typec: tcpm/tcpci_maxim: enable PROBE_PREFER_ASYNCHRONOUS MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This driver works fine with asynchronous probe. Signed-off-by: André Draszik Reviewed-by: Badhri Jagan Sridharan Link: https://lore.kernel.org/r/20250707-max77759-irq-wake-v1-3-d367f633e4bc@linaro.org Signed-off-by: Greg Kroah-Hartman --- drivers/usb/typec/tcpm/tcpci_maxim_core.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/usb/typec/tcpm/tcpci_maxim_core.c b/drivers/usb/typec/tcpm/tcpci_maxim_core.c index 43b0ec2d12ba6..19f6386507965 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, }, -- 2.47.2