From: André Draszik Date: Mon, 7 Jul 2025 10:50:29 +0000 (+0100) Subject: usb: typec: tcpm/tcpci_maxim: enable PROBE_PREFER_ASYNCHRONOUS X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8a0ca581402b40f3f13a1b8fc96ae5ab1384a041;p=thirdparty%2Flinux.git usb: typec: tcpm/tcpci_maxim: enable PROBE_PREFER_ASYNCHRONOUS 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 --- 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, },