You've already forked linux-rockchip
mirror of
https://github.com/armbian/linux-rockchip.git
synced 2026-01-06 11:08:10 -08:00
crypto: stm32 - Fix last sparse warning in stm32_cryp_check_ctr_counter
[ Upstream commit 81064c96d8 ]
This patch changes the cast in stm32_cryp_check_ctr_counter from
u32 to __be32 to match the prototype of stm32_cryp_hw_write_iv
correctly.
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
93033bbbdc
commit
c40b1bc851
@@ -1229,7 +1229,7 @@ static void stm32_cryp_check_ctr_counter(struct stm32_cryp *cryp)
|
||||
cr = stm32_cryp_read(cryp, CRYP_CR);
|
||||
stm32_cryp_write(cryp, CRYP_CR, cr & ~CR_CRYPEN);
|
||||
|
||||
stm32_cryp_hw_write_iv(cryp, (u32 *)cryp->last_ctr);
|
||||
stm32_cryp_hw_write_iv(cryp, (__be32 *)cryp->last_ctr);
|
||||
|
||||
stm32_cryp_write(cryp, CRYP_CR, cr);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user