summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2014-12-10 22:59:53 +0100
committerRichard Braun <rbraun@sceen.net>2014-12-10 23:16:47 +0100
commit9ee711bf0a4f14ffeee4131f7f8040f943364d98 (patch)
tree88f9afc6227dcaf4d41071aefc38556e8456da10
parent5679b9872a217314b025b5ff7bcac2f03b72858b (diff)
kern/cpumap: update call to kmem_cache_init
-rw-r--r--kern/cpumap.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/kern/cpumap.c b/kern/cpumap.c
index 7113af57..ccec0d22 100644
--- a/kern/cpumap.c
+++ b/kern/cpumap.c
@@ -32,9 +32,7 @@ cpumap_setup(void)
{
unsigned int i, nr_cpus;
- kmem_cache_init(&cpumap_cache, "cpumap", sizeof(struct cpumap),
- 0, NULL, NULL, NULL, 0);
-
+ kmem_cache_init(&cpumap_cache, "cpumap", sizeof(struct cpumap), 0, NULL, 0);
cpumap_zero(&cpumap_active_cpus);
nr_cpus = cpu_count();