mirror of
https://github.com/adulau/aha.git
synced 2024-12-30 20:56:23 +00:00
[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>
This commit is contained in:
parent
1a4b0fc503
commit
7947d2cc2c
1 changed files with 2 additions and 2 deletions
|
@ -1854,7 +1854,7 @@ static ssize_t provides_dev_sdrs_show(struct device *dev,
|
|||
struct bmc_device *bmc = dev_get_drvdata(dev);
|
||||
|
||||
return snprintf(buf, 10, "%u\n",
|
||||
bmc->id.device_revision && 0x80 >> 7);
|
||||
(bmc->id.device_revision & 0x80) >> 7);
|
||||
}
|
||||
|
||||
static ssize_t revision_show(struct device *dev, struct device_attribute *attr,
|
||||
|
@ -1863,7 +1863,7 @@ static ssize_t revision_show(struct device *dev, struct device_attribute *attr,
|
|||
struct bmc_device *bmc = dev_get_drvdata(dev);
|
||||
|
||||
return snprintf(buf, 20, "%u\n",
|
||||
bmc->id.device_revision && 0x0F);
|
||||
bmc->id.device_revision & 0x0F);
|
||||
}
|
||||
|
||||
static ssize_t firmware_rev_show(struct device *dev,
|
||||
|
|
Loading…
Reference in a new issue