diff options
author | Patrick Rudolph <patrick.rudolph@9elements.com> | 2019-06-25 19:36:27 +0200 |
---|---|---|
committer | Patrick Rudolph <siro@das-labor.org> | 2019-06-28 07:35:56 +0000 |
commit | 7be4f30c5a0ae2177423c38235fd6b4c11c83f82 (patch) | |
tree | 7de019e63696736df91a1c05db5999edaa6b9773 /src/arch/riscv | |
parent | 096fd0a64b03fa3ecbdf14e3f27434a4d79ae26c (diff) |
arch/riscv/mcall: Drop debug code
The printk has no effect as console_init() hasn't been called.
Also drop unused variables and headers.
Change-Id: I5bf5a8822c69bbcc3de1de460d19585b8330649f
Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/33786
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-by: Philipp Hug <philipp@hug.cx>
Diffstat (limited to 'src/arch/riscv')
-rw-r--r-- | src/arch/riscv/mcall.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/arch/riscv/mcall.c b/src/arch/riscv/mcall.c index eaef6442c5..afb17c1043 100644 --- a/src/arch/riscv/mcall.c +++ b/src/arch/riscv/mcall.c @@ -25,24 +25,15 @@ * MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. */ -#include <arch/barrier.h> -#include <arch/errno.h> -#include <console/console.h> #include <mcall.h> #include <string.h> #include <vm.h> -int mcalldebug; // set this interactively for copious debug. - void hls_init(uint32_t hart_id, void *fdt) { - printk(BIOS_SPEW, "hart %d: HLS is %p\n", hart_id, HLS()); memset(HLS(), 0, sizeof(*HLS())); HLS()->fdt = fdt; HLS()->hart_id = hart_id; mtime_init(); - - printk(BIOS_SPEW, "Time is %p and timecmp is %p\n", - HLS()->time, HLS()->timecmp); } |