diff options
Diffstat (limited to 'arch/parisc/kernel/cache.c')
| -rw-r--r-- | arch/parisc/kernel/cache.c | 5 | 
1 files changed, 1 insertions, 4 deletions
diff --git a/arch/parisc/kernel/cache.c b/arch/parisc/kernel/cache.c index 5259d8c2067..837530ea32e 100644 --- a/arch/parisc/kernel/cache.c +++ b/arch/parisc/kernel/cache.c @@ -551,10 +551,7 @@ void flush_cache_range(struct vm_area_struct *vma,  {  	int sr3; -	if (!vma->vm_mm->context) { -		BUG(); -		return; -	} +	BUG_ON(!vma->vm_mm->context);  	sr3 = mfsp(3);  	if (vma->vm_mm->context == sr3) {  |