diff options
author | Anup Patel <anup.patel@wdc.com> | 2020-05-12 10:14:43 +0530 |
---|---|---|
committer | Anup Patel <anup@brainfault.org> | 2020-05-23 10:36:26 +0530 |
commit | 73d6ef3b2933ccf0b3a8a0ba110bf53ad9720b51 (patch) | |
tree | baa3468336030b1680162ed4e31d3a3fa6d89179 /platform/template | |
parent | 89ba63493c4ce98861144180e408d6db391fd1c3 (diff) |
lib: utils: Remove redundant parameters from PLIC init functions
The "target_hart" and "hart_count" parameters of PLIC cold and
warm init functions are only used for sanity checks and not
required in PLIC initialization.
Signed-off-by: Anup Patel <anup.patel@wdc.com>
Reviewed-by: Atish Patra <atish.patra@wdc.com>
Diffstat (limited to 'platform/template')
-rw-r--r-- | platform/template/platform.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/platform/template/platform.c b/platform/template/platform.c index 84fbf56..3a3bdac 100644 --- a/platform/template/platform.c +++ b/platform/template/platform.c @@ -71,13 +71,12 @@ static int platform_irqchip_init(bool cold_boot) /* Example if the generic PLIC driver is used */ if (cold_boot) { ret = plic_cold_irqchip_init(PLATFORM_PLIC_ADDR, - PLATFORM_PLIC_NUM_SOURCES, - PLATFORM_HART_COUNT); + PLATFORM_PLIC_NUM_SOURCES); if (ret) return ret; } - return plic_warm_irqchip_init(hartid, 2 * hartid, 2 * hartid + 1); + return plic_warm_irqchip_init(2 * hartid, 2 * hartid + 1); } /* |