diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2016-05-02 07:38:35 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2016-05-02 07:38:35 +0000 |
commit | 7c001d9480d8de2bac256102a80cf9379f61e9ac (patch) | |
tree | caea54b6f9d7049824a7957ac156e8b2b5167ec9 /sys | |
parent | 3d6a228d595cfc3eddea1d98a4ed6bc3cc7812c5 (diff) |
add an empty ommmc_dump_regs() to fix the SDHC_DEBUG build
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/armv7/omap/ommmc.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/sys/arch/armv7/omap/ommmc.c b/sys/arch/armv7/omap/ommmc.c index 12470c5c281..92a585bd5a5 100644 --- a/sys/arch/armv7/omap/ommmc.c +++ b/sys/arch/armv7/omap/ommmc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ommmc.c,v 1.17 2016/05/02 03:01:36 jsg Exp $ */ +/* $OpenBSD: ommmc.c,v 1.18 2016/05/02 07:38:34 jsg Exp $ */ /* * Copyright (c) 2009 Dale Rahn <drahn@openbsd.org> @@ -1144,3 +1144,10 @@ ommmc_intr(void *arg) } return 1; } + +#ifdef SDHC_DEBUG +void +ommmc_dump_regs(struct ommmc_softc *sc) +{ +} +#endif |