Browse Source

dtc: Remove verbose message from get_node_phandle()

get_node_phandle() had a leftover debugging printf(), which could muddy
dtc's output when checking trees.  This patch removes it.
main
David Gibson 18 years ago
parent
commit
95393db96f
  1. 3
      livetree.c

3
livetree.c

@ -647,9 +647,6 @@ static cell_t get_node_phandle(struct node *root, struct node *node) @@ -647,9 +647,6 @@ static cell_t get_node_phandle(struct node *root, struct node *node)
{
static cell_t phandle = 1; /* FIXME: ick, static local */

fprintf(stderr, "get_node_phandle(%s) phandle=%x\n",
node->fullpath, node->phandle);

if ((node->phandle != 0) && (node->phandle != -1))
return node->phandle;


Loading…
Cancel
Save