]> Zhao Yanbai Git Server - minix.git/commitdiff
IO port is always 16 bit, even for inl
authorErik van der Kouwe <erik@minix3.org>
Fri, 23 Jul 2010 07:25:21 +0000 (07:25 +0000)
committerErik van der Kouwe <erik@minix3.org>
Fri, 23 Jul 2010 07:25:21 +0000 (07:25 +0000)
include/minix/portio.h

index efb8c75e4264159ee6f9e2f90ba26d3ffba88dc4..4682a7b51b652b311c9f138bb28c3e8244d53c0e 100644 (file)
@@ -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);