crypto/fsl: correct printf() statement.
The sequence of arguments should match the format string. For printing unsigned numbers we should use %u. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com>
This commit is contained in:
parent
c5f8943965
commit
32e4b65d96
@ -102,8 +102,8 @@ int caam_page_alloc(uint8_t page_num, uint8_t partition_num)
|
|||||||
|
|
||||||
/* if the page is not owned => problem */
|
/* if the page is not owned => problem */
|
||||||
if ((temp_reg & SMCSJR_PO) != PAGE_OWNED) {
|
if ((temp_reg & SMCSJR_PO) != PAGE_OWNED) {
|
||||||
printf("Allocation of page %d in partition %d failed 0x%X\n",
|
printf("Allocation of page %u in partition %u failed 0x%X\n",
|
||||||
temp_reg, page_num, partition_num);
|
page_num, partition_num, temp_reg);
|
||||||
|
|
||||||
return ERROR_IN_PAGE_ALLOC;
|
return ERROR_IN_PAGE_ALLOC;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user