Fix comparison using wrong pointer variable in dma debug code
authorThomas Jarosch <thomas.jarosch@intra2net.com>
Thu, 17 Nov 2011 19:31:02 +0000 (20:31 +0100)
committerJoerg Roedel <joerg.roedel@amd.com>
Mon, 21 Nov 2011 10:35:37 +0000 (11:35 +0100)
cppcheck reported:
[lib/dma-debug.c:248] -> [lib/dma-debug.c:248]: (style) Same expression on both sides of '=='.

Signed-off-by: Thomas Jarosch <thomas.jarosch@intra2net.com>
Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>

lib/dma-debug.c

index 74c6c7f..fea790a 100644 (file)
@@ -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;
 }