diff options
author | Tzung-Bi Shih <tzungbi@kernel.org> | 2022-07-20 04:47:54 +0000 |
---|---|---|
committer | Tzung-Bi Shih <tzungbi@kernel.org> | 2022-07-21 08:49:28 +0000 |
commit | afef1e1a0223623d063a6df51dbc342c9517b948 (patch) | |
tree | 9b6a97d4dbc2e3c15f085a84dd3aea3b1bae4550 /drivers/platform/chrome/cros_kunit_util.h | |
parent | f92dd1475b0644b4779eed6f937a1eebfb80d53d (diff) |
platform/chrome: cros_kunit_util: add default value for `msg->result`
Add default value for `msg->result` so that it won't be garbage bytes
when the mock list is empty.
Signed-off-by: Tzung-Bi Shih <tzungbi@kernel.org>
Reviewed-by: Guenter Roeck <groeck@chromium.org>
Link: https://lore.kernel.org/r/20220720044754.4026295-3-tzungbi@kernel.org
Diffstat (limited to 'drivers/platform/chrome/cros_kunit_util.h')
-rw-r--r-- | drivers/platform/chrome/cros_kunit_util.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/platform/chrome/cros_kunit_util.h b/drivers/platform/chrome/cros_kunit_util.h index 88134c9f1acf..414002271c9c 100644 --- a/drivers/platform/chrome/cros_kunit_util.h +++ b/drivers/platform/chrome/cros_kunit_util.h @@ -23,6 +23,7 @@ struct ec_xfer_mock { u32 o_data_len; }; +extern int cros_kunit_ec_xfer_mock_default_result; extern int cros_kunit_ec_xfer_mock_default_ret; extern int cros_kunit_ec_cmd_xfer_mock_called; extern int cros_kunit_ec_pkt_xfer_mock_called; |