]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blobdiff - sim/common/hw-ports.c
Update years in copyright notice for the GDB files.
[thirdparty/binutils-gdb.git] / sim / common / hw-ports.c
index 8d5c14e469cde5e065c5bf1fcc26d0871f507f8e..1fc61eeb0239e2202c6cd37ff46212a47aa04c39 100644 (file)
@@ -1,5 +1,5 @@
 /* Hardware ports.
-   Copyright (C) 1998, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+   Copyright (C) 1998-2013 Free Software Foundation, Inc.
    Contributed by Andrew Cagney and Cygnus Solutions.
 
 This file is part of GDB, the GNU debugger.
@@ -35,10 +35,9 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
 #include <ctype.h>
 
-#define TRACE(x,y)
 
-
-struct hw_port_edge {
+struct hw_port_edge
+{
   int my_port;
   struct hw *dest;
   int dest_port;
@@ -46,14 +45,16 @@ struct hw_port_edge {
   object_disposition disposition;
 };
 
-struct hw_port_data {
+struct hw_port_data
+{
   hw_port_event_method *to_port_event;
   const struct hw_port_descriptor *ports;
   struct hw_port_edge *edges;
 };
 
-const struct hw_port_descriptor empty_hw_ports[] = {
-  { NULL, },
+const struct hw_port_descriptor empty_hw_ports[] =
+{
+  { NULL, 0, 0, 0 },
 };
 
 static void
@@ -244,7 +245,7 @@ hw_port_decode (struct hw *me,
 {
   if (port_name == NULL || port_name[0] == '\0')
     return 0;
-  if (isdigit(port_name[0]))
+  if (isdigit (port_name[0]))
     {
       return strtoul (port_name, NULL, 0);
     }
@@ -252,7 +253,7 @@ hw_port_decode (struct hw *me,
     {
       const struct hw_port_descriptor *ports =
        me->ports_of_hw->ports;
-      if (ports != NULL) 
+      if (ports != NULL)
        {
          while (ports->name != NULL)
            {
@@ -266,7 +267,7 @@ hw_port_decode (struct hw *me,
                        {
                          if (port_name[len] == '\0')
                            return ports->number;
-                         else if(isdigit (port_name[len]))
+                         else if (isdigit (port_name[len]))
                            {
                              int port = (ports->number
                                          + strtoul (&port_name[len], NULL, 0));
@@ -285,7 +286,7 @@ hw_port_decode (struct hw *me,
            }
        }
     }
-  hw_abort (me, "Unreconized port %s", port_name);
+  hw_abort (me, "Unrecognized port %s", port_name);
   return 0;
 }
 
@@ -311,7 +312,7 @@ hw_port_encode (struct hw *me,
                    && port_number < ports->number + ports->nr_ports)
                  {
                    strcpy (buf, ports->name);
-                   sprintf (buf + strlen(buf), "%d", port_number - ports->number);
+                   sprintf (buf + strlen (buf), "%d", port_number - ports->number);
                    if (strlen (buf) >= sizeof_buf)
                      hw_abort (me, "hw_port_encode: buffer overflow");
                    return strlen (buf);
@@ -321,10 +322,10 @@ hw_port_encode (struct hw *me,
              {
                if (ports->number == port_number)
                  {
-                   if (strlen(ports->name) >= sizeof_buf)
+                   if (strlen (ports->name) >= sizeof_buf)
                      hw_abort (me, "hw_port_encode: buffer overflow");
-                   strcpy(buf, ports->name);
-                   return strlen(buf);
+                   strcpy (buf, ports->name);
+                   return strlen (buf);
                  }
              }
          }
@@ -332,7 +333,7 @@ hw_port_encode (struct hw *me,
       }
   }
   sprintf (buf, "%d", port_number);
-  if (strlen(buf) >= sizeof_buf)
+  if (strlen (buf) >= sizeof_buf)
     hw_abort (me, "hw_port_encode: buffer overflow");
-  return strlen(buf);
+  return strlen (buf);
 }