1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-01 10:33:33 +02:00
nixos-hardware/milkv/pioneer/zsbl-increase-timeout.patch

16 lines
309 B
Diff
Raw Permalink Normal View History

2024-03-31 01:45:46 +01:00
--- a/drivers/sd/sd.c
+++ b/drivers/sd/sd.c
@@ -560,11 +560,11 @@ static int bm_sd_read(int lba, uintptr_t buf, size_t size)
} else {
udelay(1);
timeout++;
}
- if (timeout >= 10000) {
+ if (timeout >= 100000) {
printf("sdhci read data timeout\n");
goto timeout;
}
}