diff options
| -rw-r--r-- | include/asm-x86/pgtable_32.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/asm-x86/pgtable_32.h b/include/asm-x86/pgtable_32.h index 168b6447cf18..577ab79c4c27 100644 --- a/include/asm-x86/pgtable_32.h +++ b/include/asm-x86/pgtable_32.h | |||
| @@ -198,16 +198,16 @@ do { \ | |||
| 198 | */ | 198 | */ |
| 199 | #define update_mmu_cache(vma, address, pte) do { } while (0) | 199 | #define update_mmu_cache(vma, address, pte) do { } while (0) |
| 200 | 200 | ||
| 201 | void native_pagetable_setup_start(pgd_t *base); | 201 | extern void native_pagetable_setup_start(pgd_t *base); |
| 202 | void native_pagetable_setup_done(pgd_t *base); | 202 | extern void native_pagetable_setup_done(pgd_t *base); |
| 203 | 203 | ||
| 204 | #ifndef CONFIG_PARAVIRT | 204 | #ifndef CONFIG_PARAVIRT |
| 205 | static inline void paravirt_pagetable_setup_start(pgd_t *base) | 205 | static inline void __init paravirt_pagetable_setup_start(pgd_t *base) |
| 206 | { | 206 | { |
| 207 | native_pagetable_setup_start(base); | 207 | native_pagetable_setup_start(base); |
| 208 | } | 208 | } |
| 209 | 209 | ||
| 210 | static inline void paravirt_pagetable_setup_done(pgd_t *base) | 210 | static inline void __init paravirt_pagetable_setup_done(pgd_t *base) |
| 211 | { | 211 | { |
| 212 | native_pagetable_setup_done(base); | 212 | native_pagetable_setup_done(base); |
| 213 | } | 213 | } |
