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>
This commit is contained in:
David Sterba 2010-12-27 15:39:12 +00:00 committed by Mauro Carvalho Chehab
parent c3b92c8787
commit 80b8ce89eb
1 changed files with 1 additions and 1 deletions

View File

@ -731,7 +731,7 @@ static int get_dimm_config(const struct mem_ctl_info *mci)
debugf1("\t\t%#x\t%#x\t%#x\n",
(value[j] >> 27) & 0x1,
(value[j] >> 24) & 0x7,
(value[j] && ((1 << 24) - 1)));
(value[j] & ((1 << 24) - 1)));
}
return 0;