diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2008-12-19 21:03:59 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2008-12-19 21:03:59 +0000 |
commit | f8d6201f0b2e0db4e86dcb3aeff2b71bf4ef3295 (patch) | |
tree | df7c87b5cd36ce536a698e6b7b67775b79ee3e67 /sys | |
parent | 9b43a38f3e90ed6058c62fd8e1c8997b59314973 (diff) |
Add missing #ifdef DDB around prototyupe.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/sparc64/dev/schizo.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/sparc64/dev/schizo.c b/sys/arch/sparc64/dev/schizo.c index a7e02226d15..7bd0ee04e59 100644 --- a/sys/arch/sparc64/dev/schizo.c +++ b/sys/arch/sparc64/dev/schizo.c @@ -1,4 +1,4 @@ -/* $OpenBSD: schizo.c,v 1.56 2008/12/16 22:27:34 kettenis Exp $ */ +/* $OpenBSD: schizo.c,v 1.57 2008/12/19 21:03:58 kettenis Exp $ */ /* * Copyright (c) 2002 Jason L. Wright (jason@thought.net) @@ -105,7 +105,9 @@ void *schizo_intr_establish(bus_space_tag_t, bus_space_tag_t, int, int, int, int schizo_dmamap_create(bus_dma_tag_t, bus_dma_tag_t, bus_size_t, int, bus_size_t, bus_size_t, int, bus_dmamap_t *); +#ifdef DDB void schizo_xir(void *, int); +#endif int schizo_match(struct device *parent, void *match, void *aux) |