All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot-Users] [PATCH] libfdt: Move the working_fdt pointer to cmd_fdt.c
@ 2008-06-11  2:36 Jerry Van Baren
  2008-06-11  3:18 ` Kim Phillips
  0 siblings, 1 reply; 2+ messages in thread
From: Jerry Van Baren @ 2008-06-11  2:36 UTC (permalink / raw)
  To: u-boot

The working_fdt pointer was declared in common/fdt_support.c but was
not used there.  Move it to common/cmd_fdt.c where it is used (it is
also used in lib_ppc/bootm.c).

Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
---

Hi Kim,

I've applied your patch "fdt: unshadow global working fdt variable".
As a feeble attempt to redeem myself, I added a patch to move working_fdt
to cmd_fdt.c... it isn't used (any longer) in fdt_support.c.

I started to hack bootm.c (if we moved the reference to working_fdt out
of boot_relocate_fdt() or move that function, we could make working_fdt
static), but it got too complex so I backed out of that change for now.

Best regards,
gvb

 common/cmd_fdt.c     |    5 +++++
 common/fdt_support.c |    5 -----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/common/cmd_fdt.c b/common/cmd_fdt.c
index 5c3a0bb..97b9dd7 100644
--- a/common/cmd_fdt.c
+++ b/common/cmd_fdt.c
@@ -46,6 +46,11 @@ static int fdt_parse_prop(char **newval, int count, char *data, int *len);
 static int fdt_print(const char *pathp, char *prop, int depth);
 
 /*
+ * The working_fdt points to our working flattened device tree.
+ */
+struct fdt_header *working_fdt;
+
+/*
  * Flattened Device Tree command, see the help for parameter definitions.
  */
 int do_fdt (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
diff --git a/common/fdt_support.c b/common/fdt_support.c
index e8aa3e9..e58b294 100644
--- a/common/fdt_support.c
+++ b/common/fdt_support.c
@@ -35,11 +35,6 @@
  */
 DECLARE_GLOBAL_DATA_PTR;
 
-/*
- * fdt points to our working device tree.
- */
-struct fdt_header *working_fdt;
-
 
 /**
  * fdt_find_and_setprop: Find a node and set it's property
-- 
1.5.5.1

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [U-Boot-Users] [PATCH] libfdt: Move the working_fdt pointer to cmd_fdt.c
  2008-06-11  2:36 [U-Boot-Users] [PATCH] libfdt: Move the working_fdt pointer to cmd_fdt.c Jerry Van Baren
@ 2008-06-11  3:18 ` Kim Phillips
  0 siblings, 0 replies; 2+ messages in thread
From: Kim Phillips @ 2008-06-11  3:18 UTC (permalink / raw)
  To: u-boot

On Tue, 10 Jun 2008 22:36:07 -0400
Jerry Van Baren <gvb.uboot@gmail.com> wrote:

> I've applied your patch "fdt: unshadow global working fdt variable".
> As a feeble attempt to redeem myself, I added a patch to move working_fdt
> to cmd_fdt.c... it isn't used (any longer) in fdt_support.c.

sounds good

> I started to hack bootm.c (if we moved the reference to working_fdt out
> of boot_relocate_fdt() or move that function, we could make working_fdt
> static), but it got too complex so I backed out of that change for now.

:)

I gave a shot at switching all MPC8[356]xx to MPC8[356]XX but the 100k
limit, stepping into 51xx space, and probably horrible timing (due to
the many unapplied patches out there) prevented me from doing so.

thanks,

Kim

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2008-06-11  3:18 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-11  2:36 [U-Boot-Users] [PATCH] libfdt: Move the working_fdt pointer to cmd_fdt.c Jerry Van Baren
2008-06-11  3:18 ` Kim Phillips

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.