Browse Source

[romprefix] Fix romprefix build with certain versions of binutils

Signed-off-by: Valentine Barshak <gvaxon@gmail.com>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
tags/v1.20.1
Valentine Barshak 13 years ago
parent
commit
24b62e0e1e
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/arch/i386/prefix/romprefix.S

+ 2
- 2
src/arch/i386/prefix/romprefix.S View File

@@ -445,7 +445,7 @@ get_pmm:
445 445
 	/* Preserve registers */
446 446
 	pushl	%eax
447 447
 	pushw	%di
448
-	movw	$' ', %di
448
+	movw	$( ' ' ), %di
449 449
 get_pmm_find:
450 450
 	/* Try to find existing block */
451 451
 	pushl	%ebx		/* PMM handle */
@@ -474,7 +474,7 @@ get_pmm_allocate:
474 474
 	pushw	%dx
475 475
 	pushw	%ax
476 476
 	popl	%esi
477
-	movw	$'+', %di	/* Indicate allocation attempt */
477
+	movw	$( '+' ), %di	/* Indicate allocation attempt */
478 478
 	testl	%esi, %esi
479 479
 	jnz	get_pmm_done
480 480
 	stc

Loading…
Cancel
Save