Commit f39a9e97 authored by Jarkko Sakkinen's avatar Jarkko Sakkinen

tpm_crb: fix incorrect values of cmdReady and goIdle bits

CRB_CTRL_CMD_READY and CRB_CTRL_GO_IDLE have incorrect values.
Signed-off-by: default avatarJarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
parent 7fd10d61
......@@ -35,8 +35,8 @@ enum crb_defaults {
};
enum crb_ctrl_req {
CRB_CTRL_REQ_GO_IDLE = BIT(0),
CRB_CTRL_REQ_CMD_READY = BIT(1),
CRB_CTRL_REQ_CMD_READY = BIT(0),
CRB_CTRL_REQ_GO_IDLE = BIT(1),
};
enum crb_ctrl_sts {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment