Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 10868
b: refs/heads/master
c: d719948
h: refs/heads/master
v: v3
  • Loading branch information
Tony Luck committed Sep 28, 2005
1 parent 69a782e commit 0a7afa5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: be379124c0a5abfbe57dab2823fe8a71ce797aee
refs/heads/master: d719948e623622cf9fc8016f7ec63422d929eb3b
4 changes: 2 additions & 2 deletions trunk/arch/ia64/kernel/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ static struct resource code_resource = {
};
extern void efi_initialize_iomem_resources(struct resource *,
struct resource *);
extern char _text[], _edata[], _etext[];
extern char _text[], _end[], _etext[];

unsigned long ia64_max_cacheline_size;
unsigned long ia64_iobase; /* virtual address for I/O accesses */
Expand Down Expand Up @@ -192,7 +192,7 @@ static int __init register_memory(void)
code_resource.start = ia64_tpa(_text);
code_resource.end = ia64_tpa(_etext) - 1;
data_resource.start = ia64_tpa(_etext);
data_resource.end = ia64_tpa(_edata) - 1;
data_resource.end = ia64_tpa(_end) - 1;
efi_initialize_iomem_resources(&code_resource, &data_resource);

return 0;
Expand Down

0 comments on commit 0a7afa5

Please sign in to comment.