diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2010-07-01 04:33:24 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2010-07-01 04:33:24 +0000 |
commit | e9a7fe87f9471bcf5bdb369fee3ef60ae70fd385 (patch) | |
tree | f1aef005ccb2e771191d743b36a1f12a950a0b32 /sys/arch/hppa64/dev/apic.c | |
parent | 529e48cecc263e6a44afa4efbbe43477ff2c1edb (diff) |
Add missing function prototypes.
Diffstat (limited to 'sys/arch/hppa64/dev/apic.c')
-rw-r--r-- | sys/arch/hppa64/dev/apic.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/hppa64/dev/apic.c b/sys/arch/hppa64/dev/apic.c index c2e2a9c491c..68ed3a57d9d 100644 --- a/sys/arch/hppa64/dev/apic.c +++ b/sys/arch/hppa64/dev/apic.c @@ -1,4 +1,4 @@ -/* $OpenBSD: apic.c,v 1.4 2010/05/24 15:06:03 deraadt Exp $ */ +/* $OpenBSD: apic.c,v 1.5 2010/07/01 04:33:23 jsing Exp $ */ /* * Copyright (c) 2005 Michael Shalayeff @@ -30,6 +30,8 @@ #include <hppa64/dev/elroyreg.h> #include <hppa64/dev/elroyvar.h> +void apic_write(volatile struct elroy_regs *, u_int32_t, u_int32_t); +u_int32_t apic_read(volatile struct elroy_regs *, u_int32_t); void apic_write(volatile struct elroy_regs *r, u_int32_t reg, u_int32_t val) |