diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2009-10-22 20:51:10 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2009-10-22 20:51:10 +0000 |
commit | 95f7dbad73f75f3ac57989c263e7977f9e9c61e4 (patch) | |
tree | 9d17adb00ffa1bf73f125f55b52205c6729ba934 /sys/arch/sgi/localbus/macebus.h | |
parent | ab7676a2ad81c25cfdae88cbe91361f3f18125d2 (diff) |
Make macebus_intr_disestablish() signature sane, and update its caller.
Still unimplemented for now.
Diffstat (limited to 'sys/arch/sgi/localbus/macebus.h')
-rw-r--r-- | sys/arch/sgi/localbus/macebus.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sgi/localbus/macebus.h b/sys/arch/sgi/localbus/macebus.h index 01aaaaf796c..63ca7f0ffd0 100644 --- a/sys/arch/sgi/localbus/macebus.h +++ b/sys/arch/sgi/localbus/macebus.h @@ -1,4 +1,4 @@ -/* $OpenBSD: macebus.h,v 1.13 2009/08/22 02:54:51 mk Exp $ */ +/* $OpenBSD: macebus.h,v 1.14 2009/10/22 20:51:08 miod Exp $ */ /* * Copyright (c) 2003-2004 Opsycon AB (www.opsycon.com). @@ -124,6 +124,6 @@ extern struct machine_bus_dma_tag mace_bus_dma_tag; void *macebus_intr_establish(void *, u_long, int, int, int (*)(void *), void *, const char *); -void macebus_intr_disestablish(void *, void *); +void macebus_intr_disestablish(void *); #endif /* _MACEBUS_H_ */ |