aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Sterba <dsterba@suse.cz>2010-12-27 10:39:12 -0500
committerMauro Carvalho Chehab <mchehab@redhat.com>2011-10-31 13:10:04 -0400
commit80b8ce89ebb145d91fd2ef1a1e9610aee1613109 (patch)
tree8e0ac3cb5f8e82646c1ae2a185b5ac27b787735e
parentc3b92c8787367a8bb53d57d9789b558f1295cc96 (diff)
i7core_edac: fix misuse of logical operation in place of bitop
CC: Mauro Carvalho Chehab <mchehab@redhat.com> Signed-off-by: David Sterba <dsterba@suse.cz> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r--drivers/edac/i7core_edac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/edac/i7core_edac.c b/drivers/edac/i7core_edac.c
index f6cf448d69b4..35a0ff527357 100644
--- a/drivers/edac/i7core_edac.c
+++ b/drivers/edac/i7core_edac.c
@@ -731,7 +731,7 @@ static int get_dimm_config(const struct mem_ctl_info *mci)
731 debugf1("\t\t%#x\t%#x\t%#x\n", 731 debugf1("\t\t%#x\t%#x\t%#x\n",
732 (value[j] >> 27) & 0x1, 732 (value[j] >> 27) & 0x1,
733 (value[j] >> 24) & 0x7, 733 (value[j] >> 24) & 0x7,
734 (value[j] && ((1 << 24) - 1))); 734 (value[j] & ((1 << 24) - 1)));
735 } 735 }
736 736
737 return 0; 737 return 0;