diff options
author | Patrick Rudolph <patrick.rudolph@9elements.com> | 2018-02-16 09:04:38 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-07-30 18:46:41 +0000 |
commit | e15556ed3ae859acbdfcd5a4ab175dba8b359c4e (patch) | |
tree | 061b147f29b222954b9bf5c66bc321bafd623be6 /src/soc/cavium/common/bootblock.c | |
parent | 520149dc63d5d09fc578cfc1a48f4b1ca2e2a08a (diff) |
soc/cavium/bootblock: Get rid of register X1
The register X1 isn't used. Document it and remove it.
Change-Id: I9324ea9de24ba4baaef9dde890c443dd0f921ad9
Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com>
Reviewed-on: https://review.coreboot.org/23792
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Philipp Deppenwiese <zaolin.daisuki@gmail.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: David Hendricks <david.hendricks@gmail.com>
Diffstat (limited to 'src/soc/cavium/common/bootblock.c')
-rw-r--r-- | src/soc/cavium/common/bootblock.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/soc/cavium/common/bootblock.c b/src/soc/cavium/common/bootblock.c index c61a8d7dc1..7b9d524198 100644 --- a/src/soc/cavium/common/bootblock.c +++ b/src/soc/cavium/common/bootblock.c @@ -32,7 +32,6 @@ __attribute__((weak)) void bootblock_mainboard_init(void) { /* do nothing */ } /* C code entry point for the boot block */ void bootblock_main(const uint64_t reg_x0, - const uint64_t reg_x1, const uint64_t reg_pc) { uint64_t base_timestamp = 0; @@ -57,8 +56,6 @@ void bootblock_main(const uint64_t reg_x0, printk(BIOS_ERR, "BOOTBLOCK: RST Boot Failure Code %lld\n", reg_x0); - - printk(BIOS_DEBUG, "BOOTBLOCK: FDT 0x%llX\n", reg_x1); } bootblock_soc_init(); |