[LinksOS CVS Commit]kernel/hal/prototypes io.h,1.2,1.3
Status: Inactive
Brought to you by:
terencevs
|
From: <ke...@to...> - 2003-01-12 21:42:22
|
Update of /cvsroot/linksos/kernel/hal/prototypes In directory router-internal.tossell.net:/tmp/cvs-serv4385/hal/prototypes Modified Files: io.h Log Message: Title: outportb Fix Changes: Added a space between colons in the asm call within outportb. Effects: Compiles cleanly on g++ 2.9x a=kennyt Index: io.h =================================================================== RCS file: /cvsroot/linksos/kernel/hal/prototypes/io.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** io.h 12 Jan 2003 18:51:06 -0000 1.2 --- io.h 12 Jan 2003 21:42:16 -0000 1.3 *************** *** 14,18 **** { /* Output a byte to a port */ ! asm volatile ("outb %%al,%%dx"::"d" (port), "a" (value)); } --- 14,18 ---- { /* Output a byte to a port */ ! asm volatile ("outb %%al,%%dx": :"d" (port), "a" (value)); } |