mirror of
https://xff.cz/git/u-boot/
synced 2026-01-10 15:46:20 +01:00
dm: Fix typo - missed semicolon
The commit484fdf5ba0("dm: Add support for all targets which requires MANUAL_RELOC") introduces subtle typo, i.e. missed semicolon. Fixes:484fdf5ba0("dm: Add support for all targets which requires MANUAL_RELOC") Cc: Michal Simek <michal.simek@xilinx.com> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Reviewed-by: Michal Simek <michal.simek@xilinx.com>
This commit is contained in:
committed by
Tom Rini
parent
30c0740e79
commit
cdef6bb43c
@@ -423,7 +423,7 @@ static int serial_post_probe(struct udevice *dev)
|
||||
ops->setconfig += gd->reloc_off;
|
||||
#if CONFIG_POST & CONFIG_SYS_POST_UART
|
||||
if (ops->loop)
|
||||
ops->loop += gd->reloc_off
|
||||
ops->loop += gd->reloc_off;
|
||||
#endif
|
||||
#endif
|
||||
/* Set the baud rate */
|
||||
|
||||
Reference in New Issue
Block a user