diff options
author | Richard Braun <rbraun@sceen.net> | 2017-09-21 01:26:28 +0200 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2017-09-21 01:26:28 +0200 |
commit | 4077ffe75fe9f2149cfac5b7046e73f21dc80312 (patch) | |
tree | 76be7f7076d908a395d2c15b4bf7cf4e0225004d /vm/vm_page.c | |
parent | 9b1d0f9488c905decaac5269886b137bcd23f416 (diff) | |
parent | 1ff3666dc29c0eacf911c57d3e6b6a62bdc9cb78 (diff) |
Merge branch 'xbuild'
Diffstat (limited to 'vm/vm_page.c')
-rw-r--r-- | vm/vm_page.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vm/vm_page.c b/vm/vm_page.c index cc6963fc..7f419b97 100644 --- a/vm/vm_page.c +++ b/vm/vm_page.c @@ -107,7 +107,7 @@ struct vm_page_free_list { * Zone of contiguous memory. */ struct vm_page_zone { - struct vm_page_cpu_pool cpu_pools[X15_MAX_CPUS]; + struct vm_page_cpu_pool cpu_pools[CONFIG_MAX_CPUS]; phys_addr_t start; phys_addr_t end; @@ -657,7 +657,7 @@ vm_page_info_common(int (*print_fn)(const char *format, ...)) } } -#ifdef X15_ENABLE_SHELL +#ifdef CONFIG_SHELL static void vm_page_info(void) @@ -691,7 +691,7 @@ INIT_OP_DEFINE(vm_page_setup_shell, INIT_OP_DEP(shell_setup, true), INIT_OP_DEP(vm_page_setup, true)); -#endif /* X15_ENABLE_SHELL */ +#endif /* CONFIG_SHELL */ static int __init vm_page_setup(void) |