Fix for sys_in* bug

This commit is contained in:
Ben Gras 2006-03-24 23:08:19 +00:00
parent ffa55918db
commit d130e2838e

View File

@ -1905,12 +1905,12 @@ u8_t inb(port_t port)
u16_t inw(port_t port) u16_t inw(port_t port)
{ {
int r; int r;
u16_t value; unsigned long value;
r= sys_inw(port, &value); r= sys_inw(port, &value);
if (r != OK) if (r != OK)
panic("DP8390", "sys_inw failed", r); panic("DP8390", "sys_inw failed", r);
return value; return (u16_t) value;
} }
void outb(port_t port, u8_t value) void outb(port_t port, u8_t value)