summaryrefslogtreecommitdiff
path: root/drivers/platform/x86/amd/hsmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/platform/x86/amd/hsmp.c')
-rw-r--r--drivers/platform/x86/amd/hsmp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/amd/hsmp.c b/drivers/platform/x86/amd/hsmp.c
index b056a5c8654a..b55d80e29139 100644
--- a/drivers/platform/x86/amd/hsmp.c
+++ b/drivers/platform/x86/amd/hsmp.c
@@ -362,7 +362,7 @@ static ssize_t hsmp_metric_tbl_read(struct file *filp, struct kobject *kobj,
ret = hsmp_send_message(&msg);
if (ret)
return ret;
- memcpy(buf, sock->metric_tbl_addr, bin_attr->size);
+ memcpy_fromio(buf, sock->metric_tbl_addr, bin_attr->size);
return bin_attr->size;
}