|
@@ -95,7 +95,6 @@ static struct resource bss_resource = {
|
|
|
.name = "Kernel bss",
|
|
|
.flags = IORESOURCE_BUSY | IORESOURCE_MEM
|
|
|
};
|
|
|
-extern char _text[], _end[], _etext[], _edata[], _bss[];
|
|
|
|
|
|
unsigned long ia64_max_cacheline_size;
|
|
|
|
|
@@ -206,7 +205,7 @@ static int __init register_memory(void)
|
|
|
code_resource.end = ia64_tpa(_etext) - 1;
|
|
|
data_resource.start = ia64_tpa(_etext);
|
|
|
data_resource.end = ia64_tpa(_edata) - 1;
|
|
|
- bss_resource.start = ia64_tpa(_bss);
|
|
|
+ bss_resource.start = ia64_tpa(__bss_start);
|
|
|
bss_resource.end = ia64_tpa(_end) - 1;
|
|
|
efi_initialize_iomem_resources(&code_resource, &data_resource,
|
|
|
&bss_resource);
|