[patch] 2.3.31 i386/bootsect.S

Garst R. Reese (reese@isn.net)
Mon, 11 Oct 1999 21:52:40 -0300


This is a multi-part message in MIME format.
--------------AD34A5480228771403C00727
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

Compile fails with msg.
bbootsect.s:1090 Error `$al' not allowed with`outw'
Sounds reasonable to me, but probably allowed in gcc-2.7.2.3, but not in
gcc-2.95 or maybe recent binutils. Anyway, patch attached changes the al
to ax.
Garst
--------------AD34A5480228771403C00727
Content-Type: text/plain; charset=us-ascii;
name="patch-2.3.21-bootsect.S"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="patch-2.3.21-bootsect.S"

--- bootsect.S.orig Mon Oct 11 20:07:24 1999
+++ bootsect.S Mon Oct 11 21:39:53 1999
@@ -401,7 +401,7 @@
pushw %dx
movw $0x3f2, %dx
xorb %al, %al
- outw %al, %dx
+ outw %ax, %dx
popw %dx
ret

--------------AD34A5480228771403C00727--

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/