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: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
This commit is contained in:
Jarkko Sakkinen 2016-09-02 22:34:20 +03:00
parent 7fd10d6185
commit f39a9e97d7

View file

@ -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 {