kgdb: Respect that flush op is optional
Not all kgdb I/O drivers implement a flush operation. Adjust gdbstub_exit accordingly. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
This commit is contained in:
parent
639077fb69
commit
9fbe465efc
|
@ -1129,5 +1129,6 @@ void gdbstub_exit(int status)
|
||||||
dbg_io_ops->write_char(hex_asc_lo(checksum));
|
dbg_io_ops->write_char(hex_asc_lo(checksum));
|
||||||
|
|
||||||
/* make sure the output is flushed, lest the bootloader clobber it */
|
/* make sure the output is flushed, lest the bootloader clobber it */
|
||||||
|
if (dbg_io_ops->flush)
|
||||||
dbg_io_ops->flush();
|
dbg_io_ops->flush();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue