summaryrefslogtreecommitdiffstats
path: root/gdb/remote-array.c
diff options
context:
space:
mode:
authorStu Grossman <grossman@cygnus>1995-10-16 18:59:54 +0000
committerStu Grossman <grossman@cygnus>1995-10-16 18:59:54 +0000
commit59227c078d47b163588f87a95516bf7844c6c8b4 (patch)
treeab063374ebd88d783d0ba0d8a4b5f0e2cdaa9033 /gdb/remote-array.c
parentd807bd87724e3d38d02993a4d572693950e08a8f (diff)
downloadppe42-binutils-59227c078d47b163588f87a95516bf7844c6c8b4.tar.gz
ppe42-binutils-59227c078d47b163588f87a95516bf7844c6c8b4.zip
* remote-array.c: Move baud_rate initialization from
_initialize_array to array_open. It was forcing the baud rate of all targets to be 4800 baud! Seems like I've fixed this before... * config/mips/idt.mt (TDEPFILES): Remove remote-array.o. This has *nothing* to do with IDT!!!
Diffstat (limited to 'gdb/remote-array.c')
-rw-r--r--gdb/remote-array.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/remote-array.c b/gdb/remote-array.c
index a09e6fc35b..f480beb7e5 100644
--- a/gdb/remote-array.c
+++ b/gdb/remote-array.c
@@ -570,6 +570,8 @@ array_open(args, name, from_tty)
{
char packet[PBUFSIZ];
+ baud_rate = 4800; /* this is the only supported baud rate */
+
if (args == NULL)
error ("Use `target %s DEVICE-NAME' to use a serial port, or \n\
`target %s HOST-NAME:PORT-NUMBER' to use a network connection.", name, name);
@@ -1419,6 +1421,5 @@ void
_initialize_array ()
{
add_target (&array_ops);
- baud_rate = 4800; /* this is the only supported baud rate */
}
OpenPOWER on IntegriCloud