Skip to content
Snippets Groups Projects
Commit 0a6f3275 authored by Armin Luntzer's avatar Armin Luntzer
Browse files

SPARC: fix out-of-order code lines

parent 9ea51db0
No related branches found
No related tags found
No related merge requests found
......@@ -157,8 +157,8 @@ static void bootmem_init_page_map_node(struct page_map_node **pg_node)
(*pg_node) = (struct page_map_node *) bootmem_alloc(sizeof(struct page_map_node));
(*pg_node)->pool = (struct mm_pool *) bootmem_alloc(sizeof(struct mm_pool));
pool = (*pg_node)->pool;
pool = (struct mm_pool *) bootmem_alloc(sizeof(struct mm_pool));
bzero(pool, sizeof(struct mm_pool));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment