Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f39a9e97 authored by Jarkko Sakkinen's avatar Jarkko Sakkinen
Browse files

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
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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 {