comparison vidix/sysdep/pci_openbsd.c @ 26753:502f04b67653

cosmetics: Remove useless parentheses from return statements.
author diego
date Fri, 16 May 2008 00:13:03 +0000
parents 9c4ad35fabc5
children 958431e2cde0
comparison
equal deleted inserted replaced
26752:65f61607e32f 26753:502f04b67653
34 34
35 static __inline__ int enable_os_io(void) 35 static __inline__ int enable_os_io(void)
36 { 36 {
37 if (i386_iopl(1) < 0) { 37 if (i386_iopl(1) < 0) {
38 perror("i386_iopl"); 38 perror("i386_iopl");
39 return(errno); 39 return errno;
40 } 40 }
41 return(0); 41 return 0;
42 } 42 }
43 43
44 static __inline__ int disable_os_io(void) 44 static __inline__ int disable_os_io(void)
45 { 45 {
46 /* Nothing to do */ 46 /* Nothing to do */
47 return(0); 47 return 0;
48 } 48 }
49 #endif 49 #endif