mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-05 07:06:59 +07:00
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>
This commit is contained in:
parent
adc4a3a4b0
commit
4b00706cd9
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user