diff options
Diffstat (limited to 'arch/arm/kernel')
| -rw-r--r-- | arch/arm/kernel/process.c | 1 | ||||
| -rw-r--r-- | arch/arm/kernel/smp.c | 2 | 
2 files changed, 1 insertions, 2 deletions
| diff --git a/arch/arm/kernel/process.c b/arch/arm/kernel/process.c index f21970316836..282de4826abb 100644 --- a/arch/arm/kernel/process.c +++ b/arch/arm/kernel/process.c @@ -411,7 +411,6 @@ static struct vm_area_struct gate_vma = {  	.vm_start	= 0xffff0000,  	.vm_end		= 0xffff0000 + PAGE_SIZE,  	.vm_flags	= VM_READ | VM_EXEC | VM_MAYREAD | VM_MAYEXEC, -	.vm_mm		= &init_mm,  };  static int __init gate_vma_init(void) diff --git a/arch/arm/kernel/smp.c b/arch/arm/kernel/smp.c index 47ab90563bf4..550d63cef68e 100644 --- a/arch/arm/kernel/smp.c +++ b/arch/arm/kernel/smp.c @@ -251,7 +251,7 @@ void __ref cpu_die(void)  	 * this returns, power and/or clocks can be removed at any point  	 * from this CPU and its cache by platform_cpu_kill().  	 */ -	RCU_NONIDLE(complete(&cpu_died)); +	complete(&cpu_died);  	/*  	 * Ensure that the cache lines associated with that completion are | 
