diff options
author | Gary R Hook <ghook@amd.com> | 2017-04-20 16:24:22 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2017-04-21 08:30:57 -0400 |
commit | 116591fe3eef11c6f06b662c9176385f13891183 (patch) | |
tree | 5349af5586727bc95d07779c5ce5ae4f562abd79 | |
parent | 56467cb11cf8ae4db9003f54b3d3425b5f07a10a (diff) |
crypto: ccp - Disable interrupts early on unload
Ensure that we disable interrupts first when shutting down
the driver.
Cc: <stable@vger.kernel.org> # 4.9.x+
Signed-off-by: Gary R Hook <ghook@amd.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
-rw-r--r-- | drivers/crypto/ccp/ccp-dev-v5.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/crypto/ccp/ccp-dev-v5.c b/drivers/crypto/ccp/ccp-dev-v5.c index c7972e733e43..13b81a1c1184 100644 --- a/drivers/crypto/ccp/ccp-dev-v5.c +++ b/drivers/crypto/ccp/ccp-dev-v5.c | |||
@@ -942,10 +942,10 @@ static void ccp5_destroy(struct ccp_device *ccp) | |||
942 | iowrite32(cmd_q->qcontrol & ~CMD5_Q_RUN, cmd_q->reg_control); | 942 | iowrite32(cmd_q->qcontrol & ~CMD5_Q_RUN, cmd_q->reg_control); |
943 | 943 | ||
944 | /* Disable the interrupts */ | 944 | /* Disable the interrupts */ |
945 | iowrite32(SUPPORTED_INTERRUPTS, cmd_q->reg_interrupt_status); | 945 | iowrite32(0x00, cmd_q->reg_int_enable); |
946 | 946 | ||
947 | /* Clear the interrupt status */ | 947 | /* Clear the interrupt status */ |
948 | iowrite32(0x00, cmd_q->reg_int_enable); | 948 | iowrite32(SUPPORTED_INTERRUPTS, cmd_q->reg_interrupt_status); |
949 | ioread32(cmd_q->reg_int_status); | 949 | ioread32(cmd_q->reg_int_status); |
950 | ioread32(cmd_q->reg_status); | 950 | ioread32(cmd_q->reg_status); |
951 | } | 951 | } |