[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 1/6] xen/arm: domain_build: Avoid to shadow the variable "mod" in write_properties
The variable "mod" is defined twice with different value. This make the code confusing to read. Rename the 2 "mod" in something more meaningful. Signed-off-by: Julien Grall <julien.grall@xxxxxxxxxx> -- Cc: Ian Campbell <ian.campbell@xxxxxxxxxx> Cc: Stefano Stabellini <stefano.stabellini@xxxxxxxxxx> --- xen/arch/arm/domain_build.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/xen/arch/arm/domain_build.c b/xen/arch/arm/domain_build.c index 0c3441a..0f0f53e 100644 --- a/xen/arch/arm/domain_build.c +++ b/xen/arch/arm/domain_build.c @@ -407,10 +407,10 @@ static int write_properties(struct domain *d, struct kernel_info *kinfo, int res = 0; int had_dom0_bootargs = 0; - const struct bootmodule *mod = kinfo->kernel_bootmodule; + const struct bootmodule *kernel = kinfo->kernel_bootmodule; - if ( mod && mod->cmdline[0] ) - bootargs = &mod->cmdline[0]; + if ( kernel && kernel->cmdline[0] ) + bootargs = &kernel->cmdline[0]; dt_for_each_property_node (node, prop) { @@ -489,7 +489,7 @@ static int write_properties(struct domain *d, struct kernel_info *kinfo, if ( dt_node_path_is_equal(node, "/chosen") ) { - const struct bootmodule *mod = kinfo->initrd_bootmodule; + const struct bootmodule *initrd = kinfo->initrd_bootmodule; if ( bootargs ) { @@ -503,7 +503,7 @@ static int write_properties(struct domain *d, struct kernel_info *kinfo, * If the bootloader provides an initrd, we must create a placeholder * for the initrd properties. The values will be replaced later. */ - if ( mod && mod->size ) + if ( initrd && initrd->size ) { u64 a = 0; res = fdt_property(kinfo->fdt, "linux,initrd-start", &a, sizeof(a)); -- 2.1.4 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |