[x86 setup] EDD: add missing =m constraint

Add a missing =m constraint to the EDD-probing code, that could have
caused improper dead-code elimination.

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
This commit is contained in:
H. Peter Anvin 2007-08-02 13:45:49 -04:00
Родитель 59acc08fd9
Коммит 463c9a9f7d
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -127,7 +127,7 @@ static int get_edd_info(u8 devno, struct edd_info *ei)
ax = 0x4800; ax = 0x4800;
dx = devno; dx = devno;
asm("pushfl; int $0x13; popfl" asm("pushfl; int $0x13; popfl"
: "+a" (ax), "+d" (dx) : "+a" (ax), "+d" (dx), "=m" (ei->params)
: "S" (&ei->params) : "S" (&ei->params)
: "ebx", "ecx", "edi"); : "ebx", "ecx", "edi");