|
@@ -1,7 +1,7 @@
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
|
|
/*
|
|
|
* Copyright (c) 2018-2021, The Linux Foundation. All rights reserved.
|
|
|
- * Copyright (c) 2022-2023 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
|
+ * Copyright (c) 2022-2024, Qualcomm Innovation Center, Inc. All rights reserved.
|
|
|
*/
|
|
|
|
|
|
#include <linux/module.h>
|
|
@@ -3170,7 +3170,7 @@ static int wcd937x_reset(struct device *dev)
|
|
|
if (rc) {
|
|
|
dev_err(dev, "%s: wcd sleep state request fail!\n",
|
|
|
__func__);
|
|
|
- return rc;
|
|
|
+ return -EPROBE_DEFER;
|
|
|
}
|
|
|
/* 20ms sleep required after pulling the reset gpio to LOW */
|
|
|
usleep_range(20, 30);
|
|
@@ -3179,7 +3179,7 @@ static int wcd937x_reset(struct device *dev)
|
|
|
if (rc) {
|
|
|
dev_err(dev, "%s: wcd active state request fail!\n",
|
|
|
__func__);
|
|
|
- return rc;
|
|
|
+ return -EPROBE_DEFER;
|
|
|
}
|
|
|
/* 20ms sleep required after pulling the reset gpio to HIGH */
|
|
|
usleep_range(20, 30);
|
|
@@ -3403,7 +3403,11 @@ static int wcd937x_bind(struct device *dev)
|
|
|
goto err_bind_all;
|
|
|
}
|
|
|
|
|
|
- wcd937x_reset(dev);
|
|
|
+ ret = wcd937x_reset(dev);
|
|
|
+ if (ret == -EPROBE_DEFER) {
|
|
|
+ dev_err(dev, "%s: wcd reset failed!\n", __func__);
|
|
|
+ goto err_bind_all;
|
|
|
+ }
|
|
|
/*
|
|
|
* Add 5msec delay to provide sufficient time for
|
|
|
* soundwire auto enumeration of slave devices as
|