Fix typos: Setting trace in wrong function, ME vs HW.
authorAndrew Cagney <cagney@redhat.com>
Sun, 22 Mar 1998 05:51:57 +0000 (05:51 +0000)
committerAndrew Cagney <cagney@redhat.com>
Sun, 22 Mar 1998 05:51:57 +0000 (05:51 +0000)
sim/common/ChangeLog
sim/common/hw-base.c

index e454601b1328d470037c2ce2e2795efaab3a9905..abc30d0e8e80da52667f6f760c1ca038cefda020 100644 (file)
@@ -1,5 +1,8 @@
 Sun Mar 22 16:45:54 1998  Andrew Cagney  <cagney@b1.cygnus.com>
 
+       * hw-base.c (hw_finish): Move setting of trace level to here.
+       (hw_create): From here.
+
        * hw-base.h, hw-base.c (do_hw_attach_regs): Copy function from
        ../ppc/device_table.c.
 
index 2057e904bd8d4f3bb0d9d661d42fd170dba38175..8a5a2990456f32bb2130fb0ec822a0bbf09dcd83 100644 (file)
@@ -475,8 +475,8 @@ hw_finish (struct hw *me)
     me->nr_size_cells_of_hw_unit = 1;
 
   /* Fill in the (hopefully) defined trace variable */
-  if (hw_find_property (hw, "trace?") != NULL)
-    hw->trace_of_hw_p = hw_find_boolean_property (hw, "trace?");
+  if (hw_find_property (me, "trace?") != NULL)
+    me->trace_of_hw_p = hw_find_boolean_property (me, "trace?");
 
   /* Allow the real device to override any methods */
   me->base_of_hw->descriptor->to_finish (me);