summaryrefslogtreecommitdiff
path: root/common/fdt_support.c
diff options
context:
space:
mode:
authorGerald Van Baren <vanbaren@cideas.com>2007-04-25 22:23:36 -0400
committerGerald Van Baren <vanbaren@cideas.com>2007-08-10 19:21:35 -0400
commitbb930e76fea6cf89ca2d98e2f7c7a6043d79327d (patch)
treeb1081b32e76d3facd69a380b0386826877d787d2 /common/fdt_support.c
parentba24e2ac3bdb5c489f3c787e7542b6474c4d65c6 (diff)
Minor code clean up.
Declare the variable fdt properly as extern. Call the "set_fn" function pointer the "short way" without the full dereferencing syntax. Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
Diffstat (limited to 'common/fdt_support.c')
-rw-r--r--common/fdt_support.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/common/fdt_support.c b/common/fdt_support.c
index bcdc4154b..15f133cec 100644
--- a/common/fdt_support.c
+++ b/common/fdt_support.c
@@ -37,6 +37,11 @@
*/
DECLARE_GLOBAL_DATA_PTR;
+/*
+ * fdt points to our working device tree.
+ */
+struct fdt_header *fdt;
+
/********************************************************************/