cleanup: remove unnecessary (=invisible) leading spaces

This commit is contained in:
marschap
2006-04-27 15:01:49 +00:00
parent 1aff9c4226
commit 9b111eeac4
44 changed files with 236 additions and 236 deletions
+3 -3
View File
@@ -234,17 +234,17 @@ Use i386_get_ioperm, i386_set_ioperm from <machine/sysarch.h> and inb and outb f
#if (__FreeBSD_version > 500000)
static FILE * port_access_handle = NULL;
#endif
/* Read a byte from port */
static inline int port_in (unsigned short port) {
return inb(port);
}
/* Write a byte 'val' to port */
static inline void port_out (unsigned short port, unsigned char val) {
outb(port,val);
}
/* Get access to a specific port */
static inline int port_access (unsigned short port) {
#if (__FreeBSD_version > 500000)