aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@ericsson.com>2017-01-12 10:39:35 -0500
committerSimon Marchi <simon.marchi@ericsson.com>2017-01-12 10:41:50 -0500
commitca1ca08b0893eb6ec530db0cc7e12537417244fa (patch)
tree6307452efcdda96c8cbce16fb9ff128d32e992e4 /gdb
parent1181551ef0a9a7f611a3d1130d2b284280882870 (diff)
downloadgdb-ca1ca08b0893eb6ec530db0cc7e12537417244fa.zip
gdb-ca1ca08b0893eb6ec530db0cc7e12537417244fa.tar.gz
gdb-ca1ca08b0893eb6ec530db0cc7e12537417244fa.tar.bz2
Remove dead serial_interface_lookup calls
By inspecting the serial_add_interface calls, I found that the serial interface names that we have today are: - hardwire - terminal - pipe - tcp - event The calls to serial_interface_lookup with any other names are most likely leftovers which can be removed since these serial interfaces don't exist anymore. The commits that removed the "pc" and "parallel" interfaces are respectively: cb2a4ac5dae478fcd9d6e772530c3aba0576fc7a and e386d4d2fb55042f77d0557a0849ed2464aee7b3 gdb/ChangeLog: * serial.c (serial_open): Forget about "pc" and "lpt" serial interface.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/serial.c6
2 files changed, 5 insertions, 5 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 89bbb8f..153f6cd 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,7 @@
+2017-01-12 Simon Marchi <simon.marchi@ericsson.com>
+
+ * serial.c (serial_open): Forget about "pc" and "lpt" serial interface.
+
2017-01-11 Simon Marchi <simon.marchi@ericsson.com>
* cli/cli-decode.c (lookup_cmd_1): Fix typo in comment.
diff --git a/gdb/serial.c b/gdb/serial.c
index ac7c1b9..afb7075 100644
--- a/gdb/serial.c
+++ b/gdb/serial.c
@@ -209,11 +209,7 @@ serial_open (const char *name)
const struct serial_ops *ops;
const char *open_name = name;
- if (strcmp (name, "pc") == 0)
- ops = serial_interface_lookup ("pc");
- else if (startswith (name, "lpt"))
- ops = serial_interface_lookup ("parallel");
- else if (startswith (name, "|"))
+ if (startswith (name, "|"))
{
ops = serial_interface_lookup ("pipe");
/* Discard ``|'' and any space before the command itself. */