From 2d72816ccfdcfd8039ab0b8883f9eeac895984bb Mon Sep 17 00:00:00 2001 From: David Gibson Date: Tue, 4 Dec 2007 11:49:43 +1100 Subject: dtc: Fix uninitialized use of structure_ok My rework of the tree checking code introduced a potentially nasty bug - it uses the structure_ok variable uninitialized. This patch fixes the problem. It's a fairly ugly bandaid approach, but the ugly will disappear once future patches have folded the semantic checks into the new framework. Signed-off-by: David Gibson --- dtc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dtc.h') diff --git a/dtc.h b/dtc.h index ef91c4c..00a9431 100644 --- a/dtc.h +++ b/dtc.h @@ -237,8 +237,8 @@ struct boot_info *build_boot_info(struct reserve_info *reservelist, /* Checks */ -void process_checks(int force, struct node *dt); -int check_semantics(struct node *dt, int outversion, int boot_cpuid_phys); +void process_checks(int force, struct boot_info *bi, + int checkflag, int outversion, int boot_cpuid_phys); /* Flattened trees */ -- cgit v1.1