2004-07-16 Andrew Cagney <cagney@gnu.org>
authorAndrew Cagney <cagney@redhat.com>
Fri, 16 Jul 2004 21:16:48 +0000 (21:16 +0000)
committerAndrew Cagney <cagney@redhat.com>
Fri, 16 Jul 2004 21:16:48 +0000 (21:16 +0000)
* remote-m32r-sdi.c: Re-indent.

gdb/ChangeLog
gdb/remote-m32r-sdi.c

index 9ec8301f0d3547c1cf9cf8e880d8d36b3e3f1997..5cd0887af00772917caed9fce215e82f7ded2a73 100644 (file)
@@ -1,3 +1,7 @@
+2004-07-16  Andrew Cagney  <cagney@gnu.org>
+
+       * remote-m32r-sdi.c: Re-indent.
+
 2004-07-16  Jim Blandy  <jimb@redhat.com>
 
        * ppc-tdep.h (ppc_spr_asr): Add missing OEA SPR.
index e42a34bf0f5d890bbe0958a77932f63a0d654884..2f67be8826418f255928435f2333e8de52f56d6a 100644 (file)
@@ -161,7 +161,7 @@ get_ack (void)
 {
   int c;
 
-  if (!sdi_desc) 
+  if (!sdi_desc)
     return -1;
 
   c = serial_readchar (sdi_desc, SDI_TIMEOUT);
@@ -169,7 +169,7 @@ get_ack (void)
   if (c < 0)
     return -1;
 
-  if (c != '+')                /* error */
+  if (c != '+')                        /* error */
     return -1;
 
   return 0;
@@ -181,7 +181,7 @@ send_data (void *buf, int len)
 {
   int ret;
 
-  if (!sdi_desc) 
+  if (!sdi_desc)
     return -1;
 
   if (serial_write (sdi_desc, buf, len) != 0)
@@ -200,7 +200,7 @@ recv_data (void *buf, int len)
   int total = 0;
   int c;
 
-  if (!sdi_desc) 
+  if (!sdi_desc)
     return -1;
 
   while (total < len)
@@ -264,8 +264,7 @@ check_mmu_status (void)
 /* This is called not only when we first attach, but also when the
    user types "run" after having attached.  */
 static void
-m32r_create_inferior (char *execfile, char *args, char **env,
-                     int from_tty)
+m32r_create_inferior (char *execfile, char *args, char **env, int from_tty)
 {
   CORE_ADDR entry_pt;
 
@@ -326,7 +325,7 @@ m32r_open (char *args, int from_tty)
     {
       port_str = strchr (args, ':');
       if (port_str == NULL)
-        sprintf (hostname, "%s:%d", args, SDIPORT);
+       sprintf (hostname, "%s:%d", args, SDIPORT);
       else
        strcpy (hostname, args);
     }
@@ -705,7 +704,7 @@ m32r_wait (ptid_t ptid, struct target_waitstatus *status)
       if (c < 0)
        error ("Remote connection closed");
 
-      if (c == '-')    /* error */
+      if (c == '-')            /* error */
        {
          status->kind = TARGET_WAITKIND_STOPPED;
          status->value.sig = TARGET_SIGNAL_HUP;
@@ -1540,11 +1539,11 @@ sdistatus_command (char *args, int from_tty)
     {
       c = serial_readchar (sdi_desc, SDI_TIMEOUT);
       if (c < 0)
-        return;
+       return;
       buf[i] = c;
       if (c == 0)
-        break;
-    }    
+       break;
+    }
 
   printf_filtered ("%s", buf);
 }