Commit 4ef2ec63cc5117d099960c49910533e467942e27

Authored by GuanXuetao
1 parent 3838b82c0a

unicore32 upgrade to v2.6.38-rc5: add one more paramter for pte_alloc_map call

Signed-off-by: Guan Xuetao <gxt@mprc.pku.edu.cn>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

arch/unicore32/mm/pgd.c
... ... @@ -54,7 +54,7 @@
54 54 if (!new_pmd)
55 55 goto no_pmd;
56 56  
57   - new_pte = pte_alloc_map(mm, new_pmd, 0);
  57 + new_pte = pte_alloc_map(mm, NULL, new_pmd, 0);
58 58 if (!new_pte)
59 59 goto no_pte;
60 60