diff options
author | Marcus Glocker <mglocker@cvs.openbsd.org> | 2007-08-22 18:47:17 +0000 |
---|---|---|
committer | Marcus Glocker <mglocker@cvs.openbsd.org> | 2007-08-22 18:47:17 +0000 |
commit | a53ff6552db2814ed915df7bdbad2c05294fd820 (patch) | |
tree | 729846d3814d158b12a444be43783080b6d9d2b9 | |
parent | 6959ffb5992731a067a6754bcd9135d22da69f50 (diff) |
Remove ``#define SDMMC_DEBUG''. Avoids redefinition error when compiling
a kernel and setting SDMMC_DEBUG option.
ok deraadt@
-rw-r--r-- | sys/arch/arm/xscale/pxa2x0_mmc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/arch/arm/xscale/pxa2x0_mmc.c b/sys/arch/arm/xscale/pxa2x0_mmc.c index 225ce52eb67..be75be2c588 100644 --- a/sys/arch/arm/xscale/pxa2x0_mmc.c +++ b/sys/arch/arm/xscale/pxa2x0_mmc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pxa2x0_mmc.c,v 1.2 2007/03/18 22:14:52 deraadt Exp $ */ +/* $OpenBSD: pxa2x0_mmc.c,v 1.3 2007/08/22 18:47:16 mglocker Exp $ */ /* * Copyright (c) 2007 Uwe Stuehler <uwe@openbsd.org> @@ -99,7 +99,6 @@ struct cfdriver pxammc_cd = { NULL, "pxammc", DV_DULL }; -#define SDMMC_DEBUG #ifdef SDMMC_DEBUG int sdhcdebug = 0; /* XXX must be named sdhcdebug for sdmmc.c */ #define DPRINTF(n,s) do { if ((n) <= sdhcdebug) printf s; } while (0) |