Skip to content

Commit 592d44a

Browse files
committed
Merge branch 'iommu/fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu
* 'iommu/fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu: MAINTAINERS: Update amd-iommu F: patterns iommu/amd: Fix typo in kernel-parameters.txt iommu/msm: Fix compile error in mach-msm/devices-iommu.c Fix comparison using wrong pointer variable in dma debug code
2 parents 3ab345f + b2c1639 commit 592d44a

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

Documentation/kernel-parameters.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ bytes respectively. Such letter suffixes can also be entirely omitted.
320320
on: enable for both 32- and 64-bit processes
321321
off: disable for both 32- and 64-bit processes
322322

323-
amd_iommu= [HW,X86-84]
323+
amd_iommu= [HW,X86-64]
324324
Pass parameters to the AMD IOMMU driver in the system.
325325
Possible values are:
326326
fullflush - enable flushing of IO/TLB entries when

MAINTAINERS

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -511,8 +511,8 @@ M: Joerg Roedel <[email protected]>
511511
512512
T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/linux-2.6-iommu.git
513513
S: Supported
514-
F: arch/x86/kernel/amd_iommu*.c
515-
F: arch/x86/include/asm/amd_iommu*.h
514+
F: drivers/iommu/amd_iommu*.[ch]
515+
F: include/linux/amd-iommu.h
516516

517517
AMD MICROCODE UPDATE SUPPORT
518518
M: Andreas Herrmann <[email protected]>

arch/arm/mach-msm/devices-iommu.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
#include <linux/kernel.h>
1919
#include <linux/platform_device.h>
2020
#include <linux/bootmem.h>
21+
#include <linux/module.h>
2122
#include <mach/irqs.h>
2223
#include <mach/iommu.h>
2324

lib/dma-debug.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ static void put_hash_bucket(struct hash_bucket *bucket,
245245

246246
static bool exact_match(struct dma_debug_entry *a, struct dma_debug_entry *b)
247247
{
248-
return ((a->dev_addr == a->dev_addr) &&
248+
return ((a->dev_addr == b->dev_addr) &&
249249
(a->dev == b->dev)) ? true : false;
250250
}
251251

0 commit comments

Comments
 (0)