]> Zhao Yanbai Git Server - minix.git/commitdiff
Removed cast from sys_inb.
authorPhilip Homburg <philip@cs.vu.nl>
Mon, 24 Oct 2005 13:51:39 +0000 (13:51 +0000)
committerPhilip Homburg <philip@cs.vu.nl>
Mon, 24 Oct 2005 13:51:39 +0000 (13:51 +0000)
include/minix/syslib.h

index ea4ad9ba3ffb7e718bd628c31d8c029d81220fc0..4de6e077ad56ebf3a95565592444b19ba50d2baa 100755 (executable)
@@ -146,7 +146,7 @@ _PROTOTYPE(int sys_vinl, (pvl_pair_t *pvl_pairs, int nr_ports)              );
 _PROTOTYPE(int sys_out, (int port, unsigned long value, int type)      ); 
 
 /* Shorthands for sys_in() system call. */
-#define sys_inb(p,v)   sys_in((p), (unsigned long*) (v), DIO_BYTE)
+#define sys_inb(p,v)   sys_in((p), (v), DIO_BYTE)
 #define sys_inw(p,v)   sys_in((p), (unsigned long*) (v), DIO_WORD)
 #define sys_inl(p,v)   sys_in((p), (unsigned long*) (v), DIO_LONG)
 _PROTOTYPE(int sys_in, (int port, unsigned long *value, int type)      );