提交 f39a9e97 编写于 作者: J 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: NJarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
上级 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% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册