|
@@ -60,6 +60,12 @@ static int si2168_cmd_execute(struct i2c_client *client, struct si2168_cmd *cmd)
|
|
jiffies_to_msecs(jiffies) -
|
|
jiffies_to_msecs(jiffies) -
|
|
(jiffies_to_msecs(timeout) - TIMEOUT));
|
|
(jiffies_to_msecs(timeout) - TIMEOUT));
|
|
|
|
|
|
|
|
+ /* error bit set? */
|
|
|
|
+ if ((cmd->args[0] >> 6) & 0x01) {
|
|
|
|
+ ret = -EREMOTEIO;
|
|
|
|
+ goto err_mutex_unlock;
|
|
|
|
+ }
|
|
|
|
+
|
|
if (!((cmd->args[0] >> 7) & 0x01)) {
|
|
if (!((cmd->args[0] >> 7) & 0x01)) {
|
|
ret = -ETIMEDOUT;
|
|
ret = -ETIMEDOUT;
|
|
goto err_mutex_unlock;
|
|
goto err_mutex_unlock;
|