diff options
author | Jeremy Kerr <jk@ozlabs.org> | 2007-12-13 16:18:53 +0900 |
---|---|---|
committer | Simon Horman <horms@verge.net.au> | 2007-12-19 14:50:06 +0900 |
commit | 0151e38f0d87528c8856fcb0b4d53ed547c139b0 (patch) | |
tree | f9f79379e079be6f93c77ada61586d0cd738a173 /kexec/arch/i386/kexec-multiboot-x86.c | |
parent | 1db6397fc7a335decfa7ed95a95225476a030390 (diff) |
Consolidate BOOTLOADER defines
The BOOTLOADER and BOOTLOADER_VERSION #defines are repeated in multiple
files. This change removes the unnecessary definition of these, and
keeps the kexec/kexec.h as the main source.
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Signed-off-by: Simon Horman <horms@verge.net.au>
Diffstat (limited to 'kexec/arch/i386/kexec-multiboot-x86.c')
-rw-r--r-- | kexec/arch/i386/kexec-multiboot-x86.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/kexec/arch/i386/kexec-multiboot-x86.c b/kexec/arch/i386/kexec-multiboot-x86.c index 8ec8bba..5ad279a 100644 --- a/kexec/arch/i386/kexec-multiboot-x86.c +++ b/kexec/arch/i386/kexec-multiboot-x86.c @@ -61,8 +61,6 @@ static char headerbuf[MULTIBOOT_SEARCH]; static struct multiboot_header *mbh = NULL; -#define BOOTLOADER "kexec" -#define BOOTLOADER_VERSION VERSION #define MIN(_x,_y) (((_x)<=(_y))?(_x):(_y)) |