diff options
author | Uwe Stuehler <uwe@cvs.openbsd.org> | 2006-05-28 18:45:24 +0000 |
---|---|---|
committer | Uwe Stuehler <uwe@cvs.openbsd.org> | 2006-05-28 18:45:24 +0000 |
commit | 6c3a3119902ab4d8b8ee50c346f7595059b22fe8 (patch) | |
tree | a9aa9eebccf68aa20af4c737ca344850f86dc7ff /sys/dev/sdmmc/sdmmc_mem.c | |
parent | 3d25fd3d1b673395cdf62d545d323c99b3cd4b80 (diff) |
don't #undef SDMMC_DEBUG
Diffstat (limited to 'sys/dev/sdmmc/sdmmc_mem.c')
-rw-r--r-- | sys/dev/sdmmc/sdmmc_mem.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/sys/dev/sdmmc/sdmmc_mem.c b/sys/dev/sdmmc/sdmmc_mem.c index c10e6018566..0399b9e016d 100644 --- a/sys/dev/sdmmc/sdmmc_mem.c +++ b/sys/dev/sdmmc/sdmmc_mem.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sdmmc_mem.c,v 1.1 2006/05/28 17:21:14 uwe Exp $ */ +/* $OpenBSD: sdmmc_mem.c,v 1.2 2006/05/28 18:45:23 uwe Exp $ */ /* * Copyright (c) 2006 Uwe Stuehler <uwe@openbsd.org> @@ -25,7 +25,8 @@ #include <dev/sdmmc/sdmmcreg.h> #include <dev/sdmmc/sdmmcvar.h> -#undef SDMMC_DEBUG +int sdmmc_mem_send_op_cond(struct sdmmc_softc *, u_int32_t, u_int32_t *); +int sdmmc_mem_set_blocklen(struct sdmmc_softc *, struct sdmmc_card *); #ifdef SDMMC_DEBUG #define DPRINTF(s) printf s @@ -33,9 +34,6 @@ #define DPRINTF(s) /**/ #endif -int sdmmc_mem_send_op_cond(struct sdmmc_softc *, u_int32_t, u_int32_t *); -int sdmmc_mem_set_blocklen(struct sdmmc_softc *, struct sdmmc_card *); - /* * Initialize SD/MMC memory cards and memory in SDIO "combo" cards. */ |