Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 63600
b: refs/heads/master
c: 7a883ea
h: refs/heads/master
v: v3
  • Loading branch information
Linus Torvalds committed Aug 2, 2007
1 parent 67041eb commit 90e7de0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 515495a1da9abf339b922b7919c4950e85b87b42
refs/heads/master: 7a883eaf62f4b943ebec738ce3b0796c67ef5d32
1 change: 1 addition & 0 deletions trunk/Documentation/Changes
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ o nfs-utils 1.0.5 # showmount --version
o procps 3.2.0 # ps --version
o oprofile 0.9 # oprofiled --version
o udev 081 # udevinfo -V
o grub 0.93 # grub --version

Kernel compilation
==================
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/i386/boot/edd.c
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ static int get_edd_info(u8 devno, struct edd_info *ei)
ax = 0x4800;
dx = devno;
asm("pushfl; int $0x13; popfl"
: "+a" (ax), "+d" (dx)
: "+a" (ax), "+d" (dx), "=m" (ei->params)
: "S" (&ei->params)
: "ebx", "ecx", "edi");

Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/i386/boot/video-vesa.c
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ void vesa_store_edid(void)
dx = 0; /* EDID block number */
di =(size_t) &boot_params.edid_info; /* (ES:)Pointer to block */
asm(INT10
: "+a" (ax), "+b" (bx), "+d" (dx)
: "+a" (ax), "+b" (bx), "+d" (dx), "=m" (boot_params.edid_info)
: "c" (cx), "D" (di)
: "esi");
#endif /* CONFIG_FIRMWARE_EDID */
Expand Down

0 comments on commit 90e7de0

Please sign in to comment.