diff --git a/server/drivers/port.h b/server/drivers/port.h index 4f27dda..7b52425 100644 --- a/server/drivers/port.h +++ b/server/drivers/port.h @@ -187,7 +187,7 @@ static inline int port_in (unsigned short int port) { /* Write a byte 'val' to port */ static inline void port_out (unsigned short int port, unsigned char val) { - outb(val,port); + outb(port,val); } /* Get access to a specific port */