svn commit: r350847 - head/sys/dev/sdhci
Ian Lepore
ian at FreeBSD.org
Sat Aug 10 20:03:15 UTC 2019
Author: ian
Date: Sat Aug 10 20:03:14 2019
New Revision: 350847
URL: https://svnweb.freebsd.org/changeset/base/350847
Log:
Allow the sdhci timeout sysctl var to be set as a tunable. Also, add a
missing newline in a warning printf.
Modified:
head/sys/dev/sdhci/sdhci.c
Modified: head/sys/dev/sdhci/sdhci.c
==============================================================================
--- head/sys/dev/sdhci/sdhci.c Sat Aug 10 19:02:50 2019 (r350846)
+++ head/sys/dev/sdhci/sdhci.c Sat Aug 10 20:03:14 2019 (r350847)
@@ -481,7 +481,7 @@ sdhci_set_power(struct sdhci_slot *slot, u_char power)
DELAY(100);
}
if (!(RD1(slot, SDHCI_POWER_CONTROL) & SDHCI_POWER_ON))
- slot_printf(slot, "Bus power failed to enable");
+ slot_printf(slot, "Bus power failed to enable\n");
if (slot->quirks & SDHCI_QUIRK_INTEL_POWER_UP_RESET) {
WR1(slot, SDHCI_POWER_CONTROL, pwr | 0x10);
@@ -1128,7 +1128,7 @@ no_tuning:
slot->timeout = 10;
SYSCTL_ADD_INT(device_get_sysctl_ctx(slot->bus),
SYSCTL_CHILDREN(device_get_sysctl_tree(slot->bus)), OID_AUTO,
- "timeout", CTLFLAG_RW, &slot->timeout, 0,
+ "timeout", CTLFLAG_RWTUN, &slot->timeout, 0,
"Maximum timeout for SDHCI transfers (in secs)");
TASK_INIT(&slot->card_task, 0, sdhci_card_task, slot);
TIMEOUT_TASK_INIT(taskqueue_swi_giant, &slot->card_delayed_task, 0,
More information about the svn-src-all
mailing list