Browse Source

[POWERPC] Fix harmless typo

Fix a typo. Noticed by the unlikely profiler.

Signed-off-by: Nick Piggin <npiggin@suse.de>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Nick Piggin 18 years ago
parent
commit
13a2eea146
1 changed files with 1 additions and 1 deletions
  1. 1 1
      arch/powerpc/kernel/iommu.c

+ 1 - 1
arch/powerpc/kernel/iommu.c

@@ -75,7 +75,7 @@ static unsigned long iommu_range_alloc(struct iommu_table *tbl,
 	/* This allocator was derived from x86_64's bit string search */
 
 	/* Sanity check */
-	if (unlikely(npages) == 0) {
+	if (unlikely(npages == 0)) {
 		if (printk_ratelimit())
 			WARN_ON(1);
 		return DMA_ERROR_CODE;