Message ID | 20230313094431.507952-11-tzungbi@kernel.org (mailing list archive) |
---|---|
State | Handled Elsewhere |
Headers | show |
Series | cros-ec-tests: fix some exceptions and clean-ups | expand |
diff --git a/cros/helpers/mcu.py b/cros/helpers/mcu.py index 27ce9ad5cc58..506730e71115 100644 --- a/cros/helpers/mcu.py +++ b/cros/helpers/mcu.py @@ -90,11 +90,11 @@ class ec_response_get_version(Structure): ] class ec_params_get_features(Structure): - _fields_ = [("in_data", c_ulong)] + _fields_ = [("in_data", c_uint64)] class ec_response_get_features(Structure): - _fields_ = [("out_data", c_ulong)] + _fields_ = [("out_data", c_uint64)] def EC_FEATURE_MASK_0(event_code):