From: Paul Burton Date: Fri, 15 Sep 2017 18:33:53 +0000 (-0700) Subject: boston: Drop unused return value X-Git-Tag: v2018.01-rc1~60^2~8 X-Git-Url: https://git.sur5r.net/?p=u-boot;a=commitdiff_plain;h=555a6529532c0ac82d92f26d56e9becad72216db boston: Drop unused return value The boston lowlevel_init() function zeroes the return register v0, despite the function not being expected to return a value & that value never being used. Remove the redundant assignment to v0. Signed-off-by: Paul Burton Cc: Daniel Schwierzeck --- diff --git a/board/imgtec/boston/lowlevel_init.S b/board/imgtec/boston/lowlevel_init.S index 0c01aa981d..46c9c1d269 100644 --- a/board/imgtec/boston/lowlevel_init.S +++ b/board/imgtec/boston/lowlevel_init.S @@ -34,7 +34,6 @@ LEAF(lowlevel_init) PTR_LA a0, msg_ddr_ok bal lowlevel_display - move v0, zero jr s0 END(lowlevel_init)