summaryrefslogtreecommitdiff
path: root/drivers/staging/mei
diff options
context:
space:
mode:
authorTomas Winkler <tomas.winkler@intel.com>2012-02-23 21:52:55 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-02-24 11:59:56 -0800
commit4b00706cd9499652051918305e70c7152d0cfd0e (patch)
tree7cf31b7043b81043b716ea6e6cc5f9879c2e1659 /drivers/staging/mei
parentadc4a3a4b0b78a2ab910685d138e0e598fc0edc7 (diff)
staging/mei: fix hbm_host_version_response structure
Looks during cleanup we converted type of host_version_supported member from UINT8 into int instead of u8. Since we've queried only for boolean value of this variable the bug wasn't really visible. Signed-off-by: Tomas Winkler <tomas.winkler@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/mei')
-rw-r--r--drivers/staging/mei/hw.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/mei/hw.h b/drivers/staging/mei/hw.h
index b08c90193f7..f86a213c372 100644
--- a/drivers/staging/mei/hw.h
+++ b/drivers/staging/mei/hw.h
@@ -237,7 +237,7 @@ struct hbm_host_version_request {
struct hbm_host_version_response {
struct hbm_cmd cmd;
- int host_version_supported;
+ u8 host_version_supported;
struct hbm_version me_max_version;
} __packed;