diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2008-11-13 23:41:13 +0000 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2009-06-18 00:27:20 +0200 |
commit | a383432958ee5352b37a8219863aabb7c537c9b4 (patch) | |
tree | 285a8d81426f25811cc8a3f4eb068712d2cc4e9c /i386/i386at/pic_isa.c | |
parent | f7acbc3860d0c5d1caa32a1a9a742a7dcc1a5a37 (diff) | |
download | gnumach-a383432958ee5352b37a8219863aabb7c537c9b4.tar.gz gnumach-a383432958ee5352b37a8219863aabb7c537c9b4.tar.bz2 gnumach-a383432958ee5352b37a8219863aabb7c537c9b4.zip |
2008-07-19 Barry deFreese <bdefreese@debian.org>
* device/device_emul.h (struct device_emulation_ops): Make members
reference, dealloc, dev_to_port, write_trap, and writev_trap take
mach_device_t parameter instead of void *.
* i386/i386at/autoconf.c: Make forward declarations for comintr()
and lprintr() match prototype. Add brackets around initialization
members for bus_ctlr and bus_device structs.
* i386/i386at/conf.c (dev_name_list): Pass nomap instead of nulldev
for map field.
* i386/i386at/pic_isa.c (intnull, fpintr, hardclock, kdintr,
prtnull): Declare the type of the value returned by functions to void.
Diffstat (limited to 'i386/i386at/pic_isa.c')
-rw-r--r-- | i386/i386at/pic_isa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/i386/i386at/pic_isa.c b/i386/i386at/pic_isa.c index 07b48a77..811ee1c5 100644 --- a/i386/i386at/pic_isa.c +++ b/i386/i386at/pic_isa.c @@ -30,8 +30,8 @@ /* These interrupts are always present */ -extern intnull(), fpintr(), hardclock(), kdintr(); -extern prtnull(); +extern void intnull(), fpintr(), hardclock(), kdintr(); +extern void prtnull(); void (*ivect[NINTR])() = { /* 00 */ hardclock, /* always */ |