From: Erik van der Kouwe Date: Fri, 23 Jul 2010 07:25:21 +0000 (+0000) Subject: IO port is always 16 bit, even for inl X-Git-Tag: v3.1.8~151 X-Git-Url: http://zhaoyanbai.com/repos/pkcs11-list.html?a=commitdiff_plain;h=3a5d923bf1c159894044019e784b7482d789ac21;p=minix.git IO port is always 16 bit, even for inl --- diff --git a/include/minix/portio.h b/include/minix/portio.h index efb8c75e4..4682a7b51 100644 --- a/include/minix/portio.h +++ b/include/minix/portio.h @@ -13,7 +13,7 @@ Created: Jan 15, 1992 by Philip Homburg unsigned inb(u16_t _port); unsigned inw(u16_t _port); -unsigned inl(u32_t _port); +unsigned inl(u16_t _port); void outb(u16_t _port, u8_t _value); void outw(u16_t _port, u16_t _value); void outl(u16_t _port, u32_t _value);