projects
/
profile
/
ivi
/
syslinux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8833b1c
)
Revert "Run Nindent on mbr/adjust.h"
author
H. Peter Anvin
<hpa@zytor.com>
Fri, 29 May 2009 22:22:39 +0000
(15:22 -0700)
committer
H. Peter Anvin
<hpa@zytor.com>
Fri, 29 May 2009 22:22:39 +0000
(15:22 -0700)
This reverts commit
f3ae12c8f7a2af6656c613549555f2b08b2d9708
.
adjust.h is an assembly file, not C.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
mbr/adjust.h
patch
|
blob
|
history
diff --git
a/mbr/adjust.h
b/mbr/adjust.h
index
1feb5d3
..
42c12a3
100644
(file)
--- a/
mbr/adjust.h
+++ b/
mbr/adjust.h
@@
-35,11
+35,19
@@
#define ADJUST_H
#ifdef CTRL_80
-.macro ADJUST_DRIVE testb $0x04, BIOS_kbdflags jz 1f movb $0x80, %dl 1:
-.endm
+ .macro ADJUST_DRIVE
+ testb $0x04, BIOS_kbdflags
+ jz 1f
+ movb $0x80, %dl
+1:
+ .endm
#elif defined(FORCE_80)
-.macro ADJUST_DRIVE movb $0x80, %dl.endm
+ .macro ADJUST_DRIVE
+ movb $0x80, %dl
+ .endm
#else
-.macro ADJUST_DRIVE.endm
+ .macro ADJUST_DRIVE
+ .endm
#endif
+
#endif /* ADJUST_H */