|
From: Kenn H. <ke...@us...> - 2001-03-03 13:26:21
|
Update of /cvsroot/linux-vax/kernel-2.4/arch/vax/lib In directory usw-pr-cvs1:/tmp/cvs-serv30127 Modified Files: checksum.S Log Message: Fixed error-producing apostrophe Index: checksum.S =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.4/arch/vax/lib/checksum.S,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- checksum.S 2001/03/03 02:18:22 1.1 +++ checksum.S 2001/03/03 13:27:49 1.2 @@ -59,7 +59,7 @@ bbc $1, r2, 2f # Check is bit 1 , jump if clear subl2 $2, r3 # Alignment uses up 2 bytes bgequ 1f # Jump if we have at least two bytes - addl2 $2, r3 # Deal with it if we haven't + addl2 $2, r3 # Deal with it if we have not already jmp 6f 1: /* If here copy halfword, and checksum it, */ |