mirror of
https://github.com/torvalds/linux.git
synced 2026-05-28 00:53:34 +02:00
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:
parent
7fd10d6185
commit
f39a9e97d7
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user