|
@@ -4455,7 +4455,7 @@ static ssize_t ipr_show_device_id(struct device *dev, struct device_attribute *a
|
|
|
spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
|
|
|
res = (struct ipr_resource_entry *)sdev->hostdata;
|
|
|
if (res && ioa_cfg->sis64)
|
|
|
- len = snprintf(buf, PAGE_SIZE, "0x%llx\n", res->dev_id);
|
|
|
+ len = snprintf(buf, PAGE_SIZE, "0x%llx\n", be64_to_cpu(res->dev_id));
|
|
|
else if (res)
|
|
|
len = snprintf(buf, PAGE_SIZE, "0x%llx\n", res->lun_wwn);
|
|
|
|