kgdb: Respect that flush op is optional
authorJan Kiszka <jan.kiszka@siemens.com>
Fri, 16 Mar 2012 12:17:13 +0000 (13:17 +0100)
committerJason Wessel <jason.wessel@windriver.com>
Thu, 22 Mar 2012 20:07:15 +0000 (15:07 -0500)
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>

kernel/debug/gdbstub.c

index c22d8c2..5a15574 100644 (file)
@@ -1129,5 +1129,6 @@ void gdbstub_exit(int status)
        dbg_io_ops->write_char(hex_asc_lo(checksum));
 
        /* make sure the output is flushed, lest the bootloader clobber it */
-       dbg_io_ops->flush();
+       if (dbg_io_ops->flush)
+               dbg_io_ops->flush();
 }