mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-03 21:49:32 +00:00
Host commands use correct console channel
Previously they reported on the system channel, not the hostcmd channel. BUG=none BRANCH=none (affects all platforms, but only affects use of 'chan' ec console command) TEST=manual - chan 0x40 - x86reset - should see HC debug output. Change-Id: Ie9873db015c94a0198a94ebafad87d51b0f73620 Signed-off-by: Randall Spangler <rspangler@chromium.org> Reviewed-on: https://gerrit.chromium.org/gerrit/35953 Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
@@ -18,8 +18,8 @@
|
||||
#include "util.h"
|
||||
|
||||
/* Console output macros */
|
||||
#define CPUTS(outstr) cputs(CC_SYSTEM, outstr)
|
||||
#define CPRINTF(format, args...) cprintf(CC_SYSTEM, format, ## args)
|
||||
#define CPUTS(outstr) cputs(CC_HOSTCMD, outstr)
|
||||
#define CPRINTF(format, args...) cprintf(CC_HOSTCMD, format, ## args)
|
||||
|
||||
#define TASK_EVENT_CMD_PENDING TASK_EVENT_CUSTOM(1)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user