[PATCH 13/53] usb: typec: tcpm: Switch to create*_workqueue2()
From: Bart Van Assche
Date: Sun Jun 30 2024 - 18:32:45 EST
Prepare for removal of the create*_workqueue() macros.
Signed-off-by: Bart Van Assche <bvanassche@xxxxxxx>
---
drivers/usb/typec/tcpm/fusb302.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/usb/typec/tcpm/fusb302.c b/drivers/usb/typec/tcpm/fusb302.c
index ef18a448b740..894e5f6bba60 100644
--- a/drivers/usb/typec/tcpm/fusb302.c
+++ b/drivers/usb/typec/tcpm/fusb302.c
@@ -1715,7 +1715,7 @@ static int fusb302_probe(struct i2c_client *client)
if (IS_ERR(chip->vbus))
return PTR_ERR(chip->vbus);
- chip->wq = create_singlethread_workqueue(dev_name(chip->dev));
+ chip->wq = create_singlethread_workqueue2("%s", dev_name(chip->dev));
if (!chip->wq)
return -ENOMEM;