mirror of
https://github.com/smaeul/u-boot.git
synced 2025-10-14 12:56:00 +01: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: 2ff17d2f74c5 ("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
@ -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)
|
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);
|
init_job_desc(desc, 0);
|
||||||
append_operation(desc, OP_ALG_ALGSEL_RNG | OP_TYPE_CLASS1_ALG |
|
append_operation(desc, OP_ALG_ALGSEL_RNG | OP_TYPE_CLASS1_ALG |
|
||||||
|
Loading…
x
Reference in New Issue
Block a user