[PATCH] IPMI: Fix more && typos

Fix improper use of "&&" when "&" was intended.

Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Corey Minyard <minyard@acm.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by Corey Minyard and committed by Linus Torvalds 7947d2cc 1a4b0fc5

+2 -2
+2 -2
drivers/char/ipmi/ipmi_msghandler.c
··· 1854 1854 struct bmc_device *bmc = dev_get_drvdata(dev); 1855 1855 1856 1856 return snprintf(buf, 10, "%u\n", 1857 - bmc->id.device_revision && 0x80 >> 7); 1857 + (bmc->id.device_revision & 0x80) >> 7); 1858 1858 } 1859 1859 1860 1860 static ssize_t revision_show(struct device *dev, struct device_attribute *attr, ··· 1863 1863 struct bmc_device *bmc = dev_get_drvdata(dev); 1864 1864 1865 1865 return snprintf(buf, 20, "%u\n", 1866 - bmc->id.device_revision && 0x0F); 1866 + bmc->id.device_revision & 0x0F); 1867 1867 } 1868 1868 1869 1869 static ssize_t firmware_rev_show(struct device *dev,