mirror of
https://github.com/armbian/build.git
synced 2025-09-17 03:31:39 +02:00
* waiter_local_repo: Fixed incomplete logic Signed-off-by: The-going <48602507+The-going@users.noreply.github.com> * A series of patches for sunxi v5.15.16 Signed-off-by: The-going <48602507+The-going@users.noreply.github.com> * DEBUG * check 70 * check 101 * Add 101 Armbian patches as series Patches are renamed using the logic of the file structure and the essence of the changes, sorted in the order of their receipt. Fixed a lot of incorrect overlay of some pieces in patches. Several small patches are combined, because they changed one file. Signed-off-by: The-going <48602507+The-going@users.noreply.github.com> * Remove old patches that have been reworked into a series Signed-off-by: The-going <48602507+The-going@users.noreply.github.com> * Fix for apply to v5.15.17 * Two Bluetooth-BTRTL patches for sunxi will be applied in the series. Signed-off-by: The-going <48602507+The-going@users.noreply.github.com> * check 113 * Fix print output * Revert "DEBUG" This reverts commit 49e2c7fdc0fa9474357ae51ea56629e516993c85.
29 lines
1.0 KiB
Diff
29 lines
1.0 KiB
Diff
From 0733480883573157dc6ac618640d7bc6e0fc4df6 Mon Sep 17 00:00:00 2001
|
|
From: Koumes <koumes@centrum.cz>
|
|
Date: Sat, 1 Jun 2019 21:20:26 +0000
|
|
Subject: [PATCH 068/101] drv:media:dvb-frontends:si2168: fix cmd timeout
|
|
|
|
Some demuxer si2168 commands may take 130-140 ms.
|
|
(DVB-T/T2 tuner MyGica T230C v2).
|
|
Details: https://github.com/CoreELEC/CoreELEC/pull/208
|
|
---
|
|
drivers/media/dvb-frontends/si2168.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/drivers/media/dvb-frontends/si2168.c b/drivers/media/dvb-frontends/si2168.c
|
|
index 14b93a7d3..e1381df05 100644
|
|
--- a/drivers/media/dvb-frontends/si2168.c
|
|
+++ b/drivers/media/dvb-frontends/si2168.c
|
|
@@ -40,7 +40,7 @@ static int si2168_cmd_execute(struct i2c_client *client, struct si2168_cmd *cmd)
|
|
|
|
if (cmd->rlen) {
|
|
/* wait cmd execution terminate */
|
|
- #define TIMEOUT 70
|
|
+ #define TIMEOUT 200
|
|
timeout = jiffies + msecs_to_jiffies(TIMEOUT);
|
|
while (!time_after(jiffies, timeout)) {
|
|
ret = i2c_master_recv(client, cmd->args, cmd->rlen);
|
|
--
|
|
2.31.1
|
|
|