[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [xen master] arm/setup: address violations of MISRA C:2012 Rule 8.2
commit 5d38f3eab0ce8f5f601f5a61ccc33115ba5f9720 Author: Federico Serafini <federico.serafini@xxxxxxxxxxx> AuthorDate: Fri Oct 13 17:24:34 2023 +0200 Commit: Stefano Stabellini <stefano.stabellini@xxxxxxx> CommitDate: Tue Nov 7 12:38:50 2023 -0800 arm/setup: address violations of MISRA C:2012 Rule 8.2 Add missing parameter names, no functional change. Signed-off-by: Federico Serafini <federico.serafini@xxxxxxxxxxx> Reviewed-by: Stefano Stabellini <sstabellini@xxxxxxxxxx> --- xen/arch/arm/include/asm/setup.h | 5 +++-- xen/arch/arm/setup.c | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/xen/arch/arm/include/asm/setup.h b/xen/arch/arm/include/asm/setup.h index b8866c20f4..98af6f55f5 100644 --- a/xen/arch/arm/include/asm/setup.h +++ b/xen/arch/arm/include/asm/setup.h @@ -141,7 +141,8 @@ void alloc_static_evtchn(void); void discard_initial_modules(void); void fw_unreserved_regions(paddr_t s, paddr_t e, - void (*cb)(paddr_t, paddr_t), unsigned int first); + void (*cb)(paddr_t ps, paddr_t pe), + unsigned int first); size_t boot_fdt_info(const void *fdt, paddr_t paddr); const char *boot_fdt_cmdline(const void *fdt); @@ -189,7 +190,7 @@ extern lpae_t boot_second_id[XEN_PT_LPAE_ENTRIES]; extern lpae_t boot_third_id[XEN_PT_LPAE_ENTRIES]; /* Find where Xen will be residing at runtime and return a PT entry */ -lpae_t pte_of_xenaddr(vaddr_t); +lpae_t pte_of_xenaddr(vaddr_t va); extern const char __ro_after_init_start[], __ro_after_init_end[]; diff --git a/xen/arch/arm/setup.c b/xen/arch/arm/setup.c index db748839d3..3f3a45719c 100644 --- a/xen/arch/arm/setup.c +++ b/xen/arch/arm/setup.c @@ -207,7 +207,7 @@ static void __init processor_id(void) } static void __init dt_unreserved_regions(paddr_t s, paddr_t e, - void (*cb)(paddr_t, paddr_t), + void (*cb)(paddr_t ps, paddr_t pe), unsigned int first) { unsigned int i, nr; @@ -324,7 +324,7 @@ static bool __init bootmodules_overlap_check(struct bootmodules *bootmodules, } void __init fw_unreserved_regions(paddr_t s, paddr_t e, - void (*cb)(paddr_t, paddr_t), + void (*cb)(paddr_t ps, paddr_t pe), unsigned int first) { if ( acpi_disabled ) -- generated by git-patchbot for /home/xen/git/xen.git#master
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |