From 9bb4ed7d2888a48502af8fa30fa8097d50c4213b Mon Sep 17 00:00:00 2001 From: bsd Date: Sun, 1 Dec 2002 20:10:12 +0000 Subject: [PATCH] Remove unused code. git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@165 81a1dc3b-b13d-400b-aceb-764788c761c2 --- stk500.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/stk500.c b/stk500.c index 7a8b86c4..70ff056f 100644 --- a/stk500.c +++ b/stk500.c @@ -623,13 +623,6 @@ int static stk500_setattr(int fd) return -errno; } -#if 0 - termios.c_iflag &= ~(INPCK | IXOFF | IXON); - termios.c_cflag &= ~(HUPCL | CSTOPB | CRTSCTS); - termios.c_cflag |= (CLOCAL | CREAD); - termios.c_cc [VMIN] = 1; - termios.c_cc [VTIME] = 0; -#else termios.c_iflag = 0; termios.c_oflag = 0; termios.c_cflag &= ~ (PARENB | CSIZE | CSTOPB); @@ -637,7 +630,6 @@ int static stk500_setattr(int fd) termios.c_lflag = 0; termios.c_cc[VMIN] = 1; termios.c_cc[VTIME] = 0; -#endif cfsetospeed(&termios, B115200); cfsetispeed(&termios, B115200);