1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-01 16:52:14 +02:00

fdt: unshadow global working fdt variable

differentiate with local variables of the same name by renaming the
global 'fdt' variable 'working_fdt'.

Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
This commit is contained in:
Kim Phillips
2008-06-10 11:06:17 -05:00
committed by Gerald Van Baren
parent 2fb698bf50
commit e489b9c078
4 changed files with 64 additions and 56 deletions

View File

@@ -38,7 +38,7 @@ DECLARE_GLOBAL_DATA_PTR;
/*
* fdt points to our working device tree.
*/
struct fdt_header *fdt;
struct fdt_header *working_fdt;
/**