[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [XEN PATCH] xen: change names and type qualifiers in copy_domain_page() declaration
Change names and type qualifiers of parameters in copy_domain_page() declaration to keep consistency with the corresponding definition. This addresses violations of MISRA C:2012 Rule 8.3: "All declarations of an object or function shall use the same names and type qualifiers". No functional changes. Signed-off-by: Federico Serafini <federico.serafini@xxxxxxxxxxx> --- xen/include/xen/domain_page.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/include/xen/domain_page.h b/xen/include/xen/domain_page.h index 149b217b96..c4007eac09 100644 --- a/xen/include/xen/domain_page.h +++ b/xen/include/xen/domain_page.h @@ -15,7 +15,7 @@ * Clear a given page frame, or copy between two of them. */ void clear_domain_page(mfn_t mfn); -void copy_domain_page(mfn_t dst, const mfn_t src); +void copy_domain_page(mfn_t dest, mfn_t source); #ifdef CONFIG_ARCH_MAP_DOMAIN_PAGE -- 2.34.1
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |