diff options
author | 2012-01-03 20:27:45 +0000 | |
---|---|---|
committer | 2012-01-03 20:27:45 +0000 | |
commit | 5d3cb0ffdd0c8987dc17a2ef4529b246198ceb72 (patch) | |
tree | c60bdca0529cbd44d32b3918b78d14e182ef57cd /lib/dma-debug.c | |
parent | Merge branch 'omap/uart' into next/pm (diff) | |
parent | Linux 3.2-rc7 (diff) | |
download | linux-rng-5d3cb0ffdd0c8987dc17a2ef4529b246198ceb72.tar.xz linux-rng-5d3cb0ffdd0c8987dc17a2ef4529b246198ceb72.zip |
Merge branch 'v3.2-rc7' into next/pm
Conflicts:
arch/arm/kernel/setup.c
arch/arm/mach-shmobile/board-kota2.c
Diffstat (limited to 'lib/dma-debug.c')
-rw-r--r-- | lib/dma-debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dma-debug.c b/lib/dma-debug.c index 74c6c7fce749..fea790a2b176 100644 --- a/lib/dma-debug.c +++ b/lib/dma-debug.c @@ -245,7 +245,7 @@ static void put_hash_bucket(struct hash_bucket *bucket, static bool exact_match(struct dma_debug_entry *a, struct dma_debug_entry *b) { - return ((a->dev_addr == a->dev_addr) && + return ((a->dev_addr == b->dev_addr) && (a->dev == b->dev)) ? true : false; } |