From: Jérôme Pouiller <jerome.pouil...@silabs.com>

The device take a few hundreds of milliseconds to start. However, the
current code wait up to 10 second for the chip. We can safely reduce
this value to 1 second. Thanks to that change, it is no more necessary
to use an interruptible timeout.

Signed-off-by: Jérôme Pouiller <jerome.pouil...@silabs.com>
---
 drivers/staging/wfx/main.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/staging/wfx/main.c b/drivers/staging/wfx/main.c
index 742a286c9207..ba2e3a6b3549 100644
--- a/drivers/staging/wfx/main.c
+++ b/drivers/staging/wfx/main.c
@@ -370,8 +370,7 @@ int wfx_probe(struct wfx_dev *wdev)
        if (err)
                goto err1;
 
-       err = wait_for_completion_interruptible_timeout(&wdev->firmware_ready,
-                                                       10 * HZ);
+       err = wait_for_completion_timeout(&wdev->firmware_ready, 1 * HZ);
        if (err <= 0) {
                if (err == 0) {
                        dev_err(wdev->dev, "timeout while waiting for startup 
indication. IRQ configuration error?\n");
-- 
2.26.1

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to