mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-18 02:24:18 +00:00
fix(dcc): enable DCC also for crash console
The JTAG DCC (Debug Communication Channel) console is primary used for debugging that's why make no sense not to setup it up as crash console too. Change-Id: I16e5d83f8da721657b1a10609494f835b87e5578 Signed-off-by: Michal Simek <michal.simek@amd.com>
This commit is contained in:
parent
e311b9b3dd
commit
c6d9186f60
1 changed files with 2 additions and 1 deletions
|
@ -139,7 +139,8 @@ static void dcc_console_flush(struct console *console)
|
|||
static struct dcc_console dcc_console = {
|
||||
.console = {
|
||||
.flags = CONSOLE_FLAG_BOOT |
|
||||
CONSOLE_FLAG_RUNTIME,
|
||||
CONSOLE_FLAG_RUNTIME |
|
||||
CONSOLE_FLAG_CRASH,
|
||||
.putc = dcc_console_putc,
|
||||
.getc = dcc_console_getc,
|
||||
.flush = dcc_console_flush,
|
||||
|
|
Loading…
Add table
Reference in a new issue