mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
crypto/fsl: fix missed dma_addr_t -> caam_dma_addr_t conversion
One of the "dma_addr_t" instances was left out when
converting to "caam_dma_addr_t".
Fixes: 2ff17d2f74
("crypto: fsl: refactor for 32 bit version CAAM support on ARM64")
Signed-off-by: Horia Geantă <horia.geanta@nxp.com>
Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com>
This commit is contained in:
parent
3bd5ea566e
commit
cb0db5b948
1 changed files with 1 additions and 1 deletions
|
@ -300,7 +300,7 @@ void inline_cnstr_jobdesc_rng_deinstantiation(u32 *desc, int handle)
|
|||
|
||||
void inline_cnstr_jobdesc_rng(u32 *desc, void *data_out, u32 size)
|
||||
{
|
||||
dma_addr_t dma_data_out = virt_to_phys(data_out);
|
||||
caam_dma_addr_t dma_data_out = virt_to_phys(data_out);
|
||||
|
||||
init_job_desc(desc, 0);
|
||||
append_operation(desc, OP_ALG_ALGSEL_RNG | OP_TYPE_CLASS1_ALG |
|
||||
|
|
Loading…
Reference in a new issue