提交 9b64a8ba 编写于 作者: C Corey Minyard

ipmi: Fix printing the BMC guid

It was just wrong.  Make it print according to the guid spec.
Signed-off-by: NCorey Minyard <cminyard@mvista.com>
上级 a2cb600f
......@@ -2388,9 +2388,12 @@ static ssize_t guid_show(struct device *dev, struct device_attribute *attr,
{
struct bmc_device *bmc = to_bmc_device(dev);
return snprintf(buf, 100, "%Lx%Lx\n",
(long long) bmc->guid[0],
(long long) bmc->guid[8]);
return snprintf(buf, 100,
"%2.2x%2.2x%2.2x%2.2x-%2.2x%2.2x-%2.2x%2.2x-%2.2x%2.2x-%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x\n",
bmc->guid[3], bmc->guid[2], bmc->guid[1], bmc->guid[0],
bmc->guid[5], bmc->guid[4], bmc->guid[7], bmc->guid[6],
bmc->guid[8], bmc->guid[9], bmc->guid[10], bmc->guid[11],
bmc->guid[12], bmc->guid[13], bmc->guid[14], bmc->guid[15]);
}
static DEVICE_ATTR(guid, S_IRUGO, guid_show, NULL);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册