Created
April 18, 2011 18:16
-
-
Save dileks/925851 to your computer and use it in GitHub Desktop.
edwin config: Fix for BROKEN scsi/in2000 (suggested by pipacs) V2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/drivers/scsi/in2000.h b/drivers/scsi/in2000.h | |
| index 5821e1f..cd8d852 100644 | |
| --- a/drivers/scsi/in2000.h | |
| +++ b/drivers/scsi/in2000.h | |
| @@ -72,7 +72,7 @@ int __dummy_1,__dummy_2; \ | |
| orl %%ecx, %%ecx \n \ | |
| jz 1f \n \ | |
| rep \n \ | |
| - insw (%%dx),%%es:(%%edi) \n \ | |
| + insw %%dx,%%es:(%%edi) \n \ | |
| 1: " \ | |
| : "=D" (sp) ,"=c" (__dummy_1) ,"=d" (__dummy_2) /* output */ \ | |
| : "2" (f), "0" (sp), "1" (i) /* input */ \ | |
| @@ -87,7 +87,7 @@ int __dummy_1,__dummy_2; \ | |
| orl %%ecx, %%ecx \n \ | |
| jz 1f \n \ | |
| rep \n \ | |
| - outsw %%ds:(%%esi),(%%dx) \n \ | |
| + outsw %%ds:(%%esi),%%dx \n \ | |
| 1: " \ | |
| : "=S" (sp) ,"=c" (__dummy_1) ,"=d" (__dummy_2)/* output */ \ | |
| : "2" (f), "0" (sp), "1" (i) /* input */ \ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment