arm: mvebu: fix A38x breakage from commit bb872dd930

This function parameter usage of load_addr was incorrectly caught in
the clarifying renames of commit bb872dd930, which results in boot
failures on Marvell A38x.

Signed-off-by: Joel Johnson <mrjoel@lixil.net>
Patch-to: Simon Glass <sjg@chromium.org>
This commit is contained in:
Joel Johnson 2020-01-26 09:48:58 -07:00 committed by Tom Rini
parent 0b23b0d9f9
commit 080dbc64fc

View file

@ -615,7 +615,7 @@ int ddr3_tip_load_pattern_to_odpg(u32 dev_num, enum hws_access_type access_type,
CHECK_STATUS(ddr3_tip_if_write(dev_num, access_type, if_id,
ODPG_DATA_BUFFER_OFFS_REG,
image_load_addr, MASK_ALL_BITS));
load_addr, MASK_ALL_BITS));
return MV_OK;
}