mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 08:39:41 +01:00
16 lines
309 B
Diff
16 lines
309 B
Diff
|
--- 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;
|
||
|
}
|
||
|
}
|
||
|
|