mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-25 21:54:06 +08:00
x86, relocs: Don't open code put_unaligned_le32()
Use the new headers in tools/include instead of rolling our own put_unaligned_le32() implementation. Cc: H. Peter Anvin <hpa@zytor.com> Signed-off-by: Matt Fleming <matt.fleming@intel.com> Link: http://lkml.kernel.org/r/1330436245-24875-3-git-send-email-matt@console-pimps.org Signed-off-by: H. Peter Anvin <hpa@zytor.com>
This commit is contained in:
parent
a07f7672d7
commit
55f9709cd0
@ -10,6 +10,7 @@
|
|||||||
#define USE_BSD
|
#define USE_BSD
|
||||||
#include <endian.h>
|
#include <endian.h>
|
||||||
#include <regex.h>
|
#include <regex.h>
|
||||||
|
#include <tools/le_byteshift.h>
|
||||||
|
|
||||||
static void die(char *fmt, ...);
|
static void die(char *fmt, ...);
|
||||||
|
|
||||||
@ -605,10 +606,7 @@ static void emit_relocs(int as_text)
|
|||||||
fwrite("\0\0\0\0", 4, 1, stdout);
|
fwrite("\0\0\0\0", 4, 1, stdout);
|
||||||
/* Now print each relocation */
|
/* Now print each relocation */
|
||||||
for (i = 0; i < reloc_count; i++) {
|
for (i = 0; i < reloc_count; i++) {
|
||||||
buf[0] = (relocs[i] >> 0) & 0xff;
|
put_unaligned_le32(relocs[i], buf);
|
||||||
buf[1] = (relocs[i] >> 8) & 0xff;
|
|
||||||
buf[2] = (relocs[i] >> 16) & 0xff;
|
|
||||||
buf[3] = (relocs[i] >> 24) & 0xff;
|
|
||||||
fwrite(buf, 4, 1, stdout);
|
fwrite(buf, 4, 1, stdout);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user