Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 13a2eea1 authored by Nick Piggin's avatar Nick Piggin Committed by Paul Mackerras
Browse files

[POWERPC] Fix harmless typo



Fix a typo. Noticed by the unlikely profiler.

Signed-off-by: default avatarNick Piggin <npiggin@suse.de>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent 3211be5c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;