Darn, FreeBSD outb was upside down...

This commit is contained in:
gfk
2002-10-03 20:30:12 +00:00
parent 85f72ddc0e
commit 730670fd9a
+1 -1
View File
@@ -187,7 +187,7 @@ static inline int port_in (unsigned short int port) {
/* Write a byte 'val' to port */ /* Write a byte 'val' to port */
static inline void port_out (unsigned short int port, unsigned char val) { static inline void port_out (unsigned short int port, unsigned char val) {
outb(val,port); outb(port,val);
} }
/* Get access to a specific port */ /* Get access to a specific port */