summaryrefslogtreecommitdiffstats
path: root/drivers/misc/mei/hbm.c
diff options
context:
space:
mode:
authorTomas Winkler2014-08-21 13:29:10 +0200
committerGreg Kroah-Hartman2014-09-24 07:57:47 +0200
commit3438c1f3b7b3f18a85ea7ed3c2f70ffe387aeee9 (patch)
tree871bfff6a25c9f412fd70805482200458ff2658c /drivers/misc/mei/hbm.c
parentmei: amthif: don't check amthif client identity on amthif queues (diff)
downloadkernel-qcow2-linux-3438c1f3b7b3f18a85ea7ed3c2f70ffe387aeee9.tar.gz
kernel-qcow2-linux-3438c1f3b7b3f18a85ea7ed3c2f70ffe387aeee9.tar.xz
kernel-qcow2-linux-3438c1f3b7b3f18a85ea7ed3c2f70ffe387aeee9.zip
mei: use consistently me_addr in the hbm structures
Use consistently me_addr name in hbm protocol structures to represent in firmware client address Signed-off-by: Tomas Winkler <tomas.winkler@intel.com> Signed-off-by: Alexander Usyskin <alexander.usyskin@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/misc/mei/hbm.c')
-rw-r--r--drivers/misc/mei/hbm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/misc/mei/hbm.c b/drivers/misc/mei/hbm.c
index 804106209d76..68a1cba54022 100644
--- a/drivers/misc/mei/hbm.c
+++ b/drivers/misc/mei/hbm.c
@@ -288,7 +288,7 @@ static int mei_hbm_prop_req(struct mei_device *dev)
prop_req->hbm_cmd = HOST_CLIENT_PROPERTIES_REQ_CMD;
- prop_req->address = next_client_index;
+ prop_req->me_addr = next_client_index;
ret = mei_write_message(dev, mei_hdr, dev->wr_msg.data);
if (ret) {
@@ -783,9 +783,9 @@ int mei_hbm_dispatch(struct mei_device *dev, struct mei_msg_hdr *hdr)
return -EPROTO;
}
- if (me_client->client_id != props_res->address) {
+ if (me_client->client_id != props_res->me_addr) {
dev_err(&dev->pdev->dev, "hbm: properties response: address mismatch %d ?= %d\n",
- me_client->client_id, props_res->address);
+ me_client->client_id, props_res->me_addr);
return -EPROTO;
}