summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorUwe Stuehler <uwe@cvs.openbsd.org>2006-06-01 21:47:43 +0000
committerUwe Stuehler <uwe@cvs.openbsd.org>2006-06-01 21:47:43 +0000
commit6b37ef9f877f52e97b18ea962dbb1c3aa7458dfc (patch)
treeaeb9334d75eb9e0b39f915d07d2bb517404e923f /sys
parent132ce5cc1f510d71e890cf8f318c5b86a199ab1f (diff)
fewer debug messages
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/sdmmc/sdhc.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/sys/dev/sdmmc/sdhc.c b/sys/dev/sdmmc/sdhc.c
index 8d9a95a7dcf..6eb897cfab9 100644
--- a/sys/dev/sdmmc/sdhc.c
+++ b/sys/dev/sdmmc/sdhc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sdhc.c,v 1.2 2006/05/28 18:45:23 uwe Exp $ */
+/* $OpenBSD: sdhc.c,v 1.3 2006/06/01 21:47:42 uwe Exp $ */
/*
* Copyright (c) 2006 Uwe Stuehler <uwe@openbsd.org>
@@ -464,7 +464,7 @@ sdhc_bus_power(sdmmc_chipset_handle_t sch, u_int32_t ocr)
if (ocr == 0) {
splx(s);
if (sdhc_host_reset(hp) != 0)
- printf("%s: host reset failed\n", HDEVNAME(hp));
+ DPRINTF(("%s: host reset failed\n", HDEVNAME(hp)));
return 0;
}
@@ -646,7 +646,8 @@ sdhc_start_command(struct sdhc_host *hp, struct sdmmc_command *cmd)
int error;
int s;
- DPRINTF(("%s: start cmd %u\n", HDEVNAME(hp), cmd->c_opcode));
+ DPRINTF(("%s: start cmd %u arg=%#x\n", HDEVNAME(hp), cmd->c_opcode,
+ cmd->c_arg));
hp->cmd = cmd;
/* If the card went away, finish the command immediately. */
@@ -764,8 +765,6 @@ sdhc_wait_command(struct sdhc_host *hp, int flags)
return 0;
}
- DPRINTF(("%s: tsleep sdhccmd (flags=%#x)\n",
- HDEVNAME(hp), flags));
(void)tsleep((caddr_t)hp, PWAIT, "sdhccmd", 0);
/* Process card events. */
@@ -789,9 +788,6 @@ sdhc_finish_command(struct sdhc_host *hp)
/* Cancel command timeout. */
timeout_del(&hp->cmd_to);
- DPRINTF(("%s: finish cmd %u (flags=%#x error=%d)\n",
- HDEVNAME(hp), cmd->c_opcode, cmd->c_flags, cmd->c_error));
-
/*
* The host controller removes bits [0:7] from the response
* data (CRC) and we pass the data up unchanged to the bus
@@ -1012,6 +1008,8 @@ sdhc_intr(void *arg)
DPRINTF(("%s: error interrupt, status=%b\n",
HDEVNAME(hp), error, SDHC_EINTR_STATUS_BITS));
+ /* XXX command timeout has higher priority
+ * than command complete */
if (ISSET(error, SDHC_CMD_TIMEOUT_ERROR|
SDHC_DATA_TIMEOUT_ERROR) && hp->cmd != NULL &&
!ISSET(hp->cmd->c_flags, SCF_DONE)) {