spl: atf: cast NULL to uintptr_t explictly
authorSeung-Woo Kim <sw0312.kim@samsung.com>
Mon, 6 Jan 2020 09:46:08 +0000 (18:46 +0900)
committerJaehoon Chung <jh80.chung@samsung.com>
Tue, 20 Oct 2020 06:13:48 +0000 (15:13 +0900)
commit74fb459b17761cbb6e91cebf212375452a6feb97
tree0f0c335000f09d66bcb93f38a0a97565403aeb46
parent5f8cc11bc86a826886e3f628a5a903dec98d89a5
spl: atf: cast NULL to uintptr_t explictly

The bl31_entry() requires uintptr_t for its 3rd argument but NULL
is used calling the function. Cast it explictly to avoid
int-conversion build warning.

Change-Id: I0033c1bdcb9e115745ecec67950487cb85aeaba2
Fixes: d332415fe82f ("spl: atf: call bl31_entry function before jump to u-boot")
Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
common/spl/spl.c