diff options
author | Pingchao Yang <pingchao.yang@intel.com> | 2016-03-03 02:46:45 -0500 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2016-03-11 08:19:19 -0500 |
commit | 84a0ced0b6b47755bf26931ad5ed0ad267139964 (patch) | |
tree | e05779f5bc01a336399de7e859a8f8bc2117f62d | |
parent | b93f342da1766ef1740e6277508329356c4ea48b (diff) |
crypto: qat - Change the definition of icp_qat_uof_regtype
The definition of icp_qat_uof_regtype should be coherent with
the definition in firmware compiler.
Signed-off-by: Yang Pingchao <pingchao.yang@intel.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
-rw-r--r-- | drivers/crypto/qat/qat_common/icp_qat_uclo.h | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/drivers/crypto/qat/qat_common/icp_qat_uclo.h b/drivers/crypto/qat/qat_common/icp_qat_uclo.h index d97db990955d..5d1ee7e53492 100644 --- a/drivers/crypto/qat/qat_common/icp_qat_uclo.h +++ b/drivers/crypto/qat/qat_common/icp_qat_uclo.h | |||
@@ -112,27 +112,27 @@ enum icp_qat_uof_mem_region { | |||
112 | }; | 112 | }; |
113 | 113 | ||
114 | enum icp_qat_uof_regtype { | 114 | enum icp_qat_uof_regtype { |
115 | ICP_NO_DEST, | 115 | ICP_NO_DEST = 0, |
116 | ICP_GPA_REL, | 116 | ICP_GPA_REL = 1, |
117 | ICP_GPA_ABS, | 117 | ICP_GPA_ABS = 2, |
118 | ICP_GPB_REL, | 118 | ICP_GPB_REL = 3, |
119 | ICP_GPB_ABS, | 119 | ICP_GPB_ABS = 4, |
120 | ICP_SR_REL, | 120 | ICP_SR_REL = 5, |
121 | ICP_SR_RD_REL, | 121 | ICP_SR_RD_REL = 6, |
122 | ICP_SR_WR_REL, | 122 | ICP_SR_WR_REL = 7, |
123 | ICP_SR_ABS, | 123 | ICP_SR_ABS = 8, |
124 | ICP_SR_RD_ABS, | 124 | ICP_SR_RD_ABS = 9, |
125 | ICP_SR_WR_ABS, | 125 | ICP_SR_WR_ABS = 10, |
126 | ICP_DR_REL, | 126 | ICP_DR_REL = 19, |
127 | ICP_DR_RD_REL, | 127 | ICP_DR_RD_REL = 20, |
128 | ICP_DR_WR_REL, | 128 | ICP_DR_WR_REL = 21, |
129 | ICP_DR_ABS, | 129 | ICP_DR_ABS = 22, |
130 | ICP_DR_RD_ABS, | 130 | ICP_DR_RD_ABS = 23, |
131 | ICP_DR_WR_ABS, | 131 | ICP_DR_WR_ABS = 24, |
132 | ICP_LMEM, | 132 | ICP_LMEM = 26, |
133 | ICP_LMEM0, | 133 | ICP_LMEM0 = 27, |
134 | ICP_LMEM1, | 134 | ICP_LMEM1 = 28, |
135 | ICP_NEIGH_REL, | 135 | ICP_NEIGH_REL = 31, |
136 | }; | 136 | }; |
137 | 137 | ||
138 | enum icp_qat_css_fwtype { | 138 | enum icp_qat_css_fwtype { |