diff options
author | Tomas Winkler <tomas.winkler@intel.com> | 2014-08-21 13:29:10 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-09-24 07:57:47 +0200 |
commit | 3438c1f3b7b3f18a85ea7ed3c2f70ffe387aeee9 (patch) | |
tree | 871bfff6a25c9f412fd70805482200458ff2658c /drivers/misc/mei/hw.h | |
parent | mei: amthif: don't check amthif client identity on amthif queues (diff) | |
download | linux-3438c1f3b7b3f18a85ea7ed3c2f70ffe387aeee9.tar.xz 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/hw.h')
-rw-r--r-- | drivers/misc/mei/hw.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/misc/mei/hw.h b/drivers/misc/mei/hw.h index dd448e58cc87..50526f92f092 100644 --- a/drivers/misc/mei/hw.h +++ b/drivers/misc/mei/hw.h @@ -206,14 +206,13 @@ struct mei_client_properties { struct hbm_props_request { u8 hbm_cmd; - u8 address; + u8 me_addr; u8 reserved[2]; } __packed; - struct hbm_props_response { u8 hbm_cmd; - u8 address; + u8 me_addr; u8 status; u8 reserved[1]; struct mei_client_properties client_properties; |