aboutsummaryrefslogtreecommitdiff
path: root/gdb/ocd.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2002-02-24 03:59:50 +0000
committerAndrew Cagney <cagney@redhat.com>2002-02-24 03:59:50 +0000
commit50a9e2f10c9eff04f5a218a9be851df92109ab29 (patch)
tree0540274c32ab4c3170d46b2914626874a425602f /gdb/ocd.c
parent8b6e79328f5ec33bad37c035e3cd0390ff82d556 (diff)
downloadgdb-50a9e2f10c9eff04f5a218a9be851df92109ab29.zip
gdb-50a9e2f10c9eff04f5a218a9be851df92109ab29.tar.gz
gdb-50a9e2f10c9eff04f5a218a9be851df92109ab29.tar.bz2
* ocd.c (ocd_open): Do not try to open the "ocd" device.
* serial.c (serial_open): Delete check for "ocd". Fix PR gdb/349.
Diffstat (limited to 'gdb/ocd.c')
-rw-r--r--gdb/ocd.c26
1 files changed, 3 insertions, 23 deletions
diff --git a/gdb/ocd.c b/gdb/ocd.c
index 3364a91..6834eea 100644
--- a/gdb/ocd.c
+++ b/gdb/ocd.c
@@ -291,29 +291,9 @@ device the OCD device is attached to (e.g. /dev/ttya).");
unpush_target (current_ops);
- if (strncmp (name, "wiggler", 7) == 0)
- {
- ocd_desc = serial_open ("ocd");
- if (!ocd_desc)
- perror_with_name (name);
-
- buf[0] = OCD_LOG_FILE;
- buf[1] = 1; /* open new or overwrite existing WIGGLERS.LOG */
- ocd_put_packet (buf, 2);
- p = ocd_get_packet (buf[0], &pktlen, remote_timeout);
-
- buf[0] = OCD_SET_CONNECTION;
- buf[1] = 0x01; /* atoi (name[11]); */
- ocd_put_packet (buf, 2);
- p = ocd_get_packet (buf[0], &pktlen, remote_timeout);
- }
- else
- /* not using Wigglers.dll */
- {
- ocd_desc = serial_open (name);
- if (!ocd_desc)
- perror_with_name (name);
- }
+ ocd_desc = serial_open (name);
+ if (!ocd_desc)
+ perror_with_name (name);
if (baud_rate != -1)
{