Searched refs:retune_count (Results 1 - 2 of 2) sorted by relevance

/freebsd-13-stable/sys/dev/sdhci/
H A Dsdhci.c972 slot->retune_count = (caps2 & SDHCI_RETUNE_CNT_MASK) >>
974 if (slot->retune_count > 0xb) {
976 "%x, using 1 sec\n", slot->retune_count);
977 slot->retune_count = 1;
978 } else if (slot->retune_count != 0)
979 slot->retune_count =
980 1 << (slot->retune_count - 1);
1087 slot->retune_count, slot->retune_mode + 1);
1351 slot->retune_ticks = slot->retune_count * hz;
H A Dsdhci.h395 uint8_t retune_count; /* Controller re-tuning count [s] */ member in struct:sdhci_slot

Completed in 57 milliseconds