fix the build when SDHC_DEBUG is defined
authorjsg <jsg@openbsd.org>
Sat, 30 May 2015 02:17:36 +0000 (02:17 +0000)
committerjsg <jsg@openbsd.org>
Sat, 30 May 2015 02:17:36 +0000 (02:17 +0000)
sys/arch/armv7/exynos/exesdhc.c
sys/arch/armv7/imx/imxesdhc.c
sys/arch/armv7/omap/ommmc.c

index f275679..b5da2c2 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: exesdhc.c,v 1.2 2015/05/27 00:06:14 jsg Exp $ */
+/*     $OpenBSD: exesdhc.c,v 1.3 2015/05/30 02:17:36 jsg Exp $ */
 /*
  * Copyright (c) 2009 Dale Rahn <drahn@openbsd.org>
  * Copyright (c) 2006 Uwe Stuehler <uwe@openbsd.org>
@@ -602,7 +602,7 @@ exesdhc_wait_state(struct exesdhc_softc *sc, uint32_t mask, uint32_t value)
                        return 0;
                delay(10);
        }
-       DPRINTF(0,("%s: timeout waiting for %x\n", HDEVNAME(sc),
+       DPRINTF(0,("%s: timeout waiting for %x, state %x\n", HDEVNAME(sc),
            value, state));
        return ETIMEDOUT;
 }
@@ -677,7 +677,7 @@ exesdhc_start_command(struct exesdhc_softc *sc, struct sdmmc_command *cmd)
        int error;
        int s;
 
-       DPRINTF(1,("%s: start cmd %u arg=%#x data=%#x dlen=%d flags=%#x "
+       DPRINTF(1,("%s: start cmd %u arg=%#x data=%p dlen=%d flags=%#x "
            "proc=\"%s\"\n", HDEVNAME(sc), cmd->c_opcode, cmd->c_arg,
            cmd->c_data, cmd->c_datalen, cmd->c_flags, curproc ?
            curproc->p_comm : ""));
@@ -968,7 +968,7 @@ exesdhc_intr(void *arg)
        /* Acknowledge the interrupts we are about to handle. */
        HWRITE4(sc, SDHC_INT_STATUS, status);
        DPRINTF(2,("%s: interrupt status=0x%08x\n", HDEVNAME(sc),
-           status, status));
+           status));
 
        /*
         * Service error interrupts.
index 4437323..9408dbe 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: imxesdhc.c,v 1.10 2015/05/17 12:28:03 jsg Exp $       */
+/*     $OpenBSD: imxesdhc.c,v 1.11 2015/05/30 02:17:36 jsg Exp $       */
 /*
  * Copyright (c) 2009 Dale Rahn <drahn@openbsd.org>
  * Copyright (c) 2006 Uwe Stuehler <uwe@openbsd.org>
@@ -635,7 +635,7 @@ imxesdhc_wait_state(struct imxesdhc_softc *sc, uint32_t mask, uint32_t value)
                        return 0;
                delay(10);
        }
-       DPRINTF(0,("%s: timeout waiting for %x\n", HDEVNAME(sc),
+       DPRINTF(0,("%s: timeout waiting for %x, state %x\n", HDEVNAME(sc),
            value, state));
        return ETIMEDOUT;
 }
@@ -710,7 +710,7 @@ imxesdhc_start_command(struct imxesdhc_softc *sc, struct sdmmc_command *cmd)
        int error;
        int s;
 
-       DPRINTF(1,("%s: start cmd %u arg=%#x data=%#x dlen=%d flags=%#x "
+       DPRINTF(1,("%s: start cmd %u arg=%#x data=%p dlen=%d flags=%#x "
            "proc=\"%s\"\n", HDEVNAME(sc), cmd->c_opcode, cmd->c_arg,
            cmd->c_data, cmd->c_datalen, cmd->c_flags, curproc ?
            curproc->p_comm : ""));
@@ -1001,7 +1001,7 @@ imxesdhc_intr(void *arg)
        /* Acknowledge the interrupts we are about to handle. */
        HWRITE4(sc, SDHC_INT_STATUS, status);
        DPRINTF(2,("%s: interrupt status=0x%08x\n", HDEVNAME(sc),
-           status, status));
+           status));
 
        /*
         * Service error interrupts.
index 7abb1db..03040e9 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ommmc.c,v 1.13 2014/11/04 13:18:04 jsg Exp $  */
+/*     $OpenBSD: ommmc.c,v 1.14 2015/05/30 02:17:36 jsg Exp $  */
 
 /*
  * Copyright (c) 2009 Dale Rahn <drahn@openbsd.org>
@@ -817,7 +817,7 @@ ommmc_start_command(struct ommmc_softc *sc, struct sdmmc_command *cmd)
        int error;
        int s;
 
-       DPRINTF(1,("%s: start cmd %u arg=%#x data=%#x dlen=%d flags=%#x "
+       DPRINTF(1,("%s: start cmd %u arg=%#x data=%p dlen=%d flags=%#x "
            "proc=\"%s\"\n", DEVNAME(sc), cmd->c_opcode, cmd->c_arg,
            cmd->c_data, cmd->c_datalen, cmd->c_flags, curproc ?
            curproc->p_comm : ""));