diff options
| author | Andrew Morton <akpm@osdl.org> | 2004-02-05 16:51:29 -0800 |
|---|---|---|
| committer | Greg Kroah-Hartman <greg@kroah.com> | 2004-02-05 16:51:29 -0800 |
| commit | ed038d0a2e8d451e2d06cfd74a8a27e0703fd223 (patch) | |
| tree | 8f74111174bbd5befd1bfef7cb25cf60fcb7e822 /include | |
| parent | 98520237443e0ea7b3f257f9c642c8f652a32ab9 (diff) | |
[PATCH] Altix: cleanup HWGRAPH_DEBUG
From: Martin Hicks <mort@wildopensource.com>
A patch to clean up HWGRAPH_DEBUG. It also cleans up some compile warning
by changing the prototype of hwgraph_debug().
I ran this patch by Pat & Colin and they asked me to send it to you.
Diffstat (limited to 'include')
| -rw-r--r-- | include/asm-ia64/sn/hcl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-ia64/sn/hcl.h b/include/asm-ia64/sn/hcl.h index b10d9ea6760e..c6d961e68073 100644 --- a/include/asm-ia64/sn/hcl.h +++ b/include/asm-ia64/sn/hcl.h @@ -14,10 +14,10 @@ extern vertex_hdl_t hwgraph_root; extern vertex_hdl_t linux_busnum; -void hwgraph_debug(char *, char *, int, vertex_hdl_t, vertex_hdl_t, char *, ...); +void hwgraph_debug(char *, const char *, int, vertex_hdl_t, vertex_hdl_t, char *, ...); #if 1 -#define HWGRAPH_DEBUG(args) hwgraph_debug args ; +#define HWGRAPH_DEBUG(args...) hwgraph_debug(args) #else #define HWGRAPH_DEBUG(args) #endif |
