patch-2.3.99-pre6 linux/arch/ia64/kernel/efi.c
Next file: linux/arch/ia64/kernel/entry.S
Previous file: linux/arch/ia64/kernel/acpi.c
Back to the patch index
Back to the overall index
- Lines: 45
- Date:
Fri Apr 21 15:21:24 2000
- Orig file:
v2.3.99-pre5/linux/arch/ia64/kernel/efi.c
- Orig date:
Fri Mar 10 16:40:39 2000
diff -u --recursive --new-file v2.3.99-pre5/linux/arch/ia64/kernel/efi.c linux/arch/ia64/kernel/efi.c
@@ -24,7 +24,7 @@
#include <asm/io.h>
#include <asm/processor.h>
-#define EFI_DEBUG
+#define EFI_DEBUG 0
extern efi_status_t efi_call_phys (void *, ...);
@@ -210,9 +210,8 @@
void __init
efi_init (void)
{
- void *efi_map_start, *efi_map_end, *p;
+ void *efi_map_start, *efi_map_end;
efi_config_table_t *config_tables;
- efi_memory_desc_t *md;
efi_char16_t *c16;
u64 efi_desc_size;
char vendor[100] = "unknown";
@@ -278,13 +277,18 @@
efi_map_end = efi_map_start + ia64_boot_param.efi_memmap_size;
efi_desc_size = ia64_boot_param.efi_memdesc_size;
-#ifdef EFI_DEBUG
+#if EFI_DEBUG
/* print EFI memory map: */
- for (i = 0, p = efi_map_start; p < efi_map_end; ++i, p += efi_desc_size) {
- md = p;
- printk("mem%02u: type=%u, attr=0x%lx, range=[0x%016lx-0x%016lx) (%luMB)\n",
- i, md->type, md->attribute,
- md->phys_addr, md->phys_addr + (md->num_pages<<12) - 1, md->num_pages >> 8);
+ {
+ efi_memory_desc_t *md = p;
+ void *p;
+
+ for (i = 0, p = efi_map_start; p < efi_map_end; ++i, p += efi_desc_size) {
+ md = p;
+ printk("mem%02u: type=%u, attr=0x%lx, range=[0x%016lx-0x%016lx) (%luMB)\n",
+ i, md->type, md->attribute, md->phys_addr,
+ md->phys_addr + (md->num_pages<<12) - 1, md->num_pages >> 8);
+ }
}
#endif
}
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)