diff options
author | Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at> | 2016-01-04 03:05:15 +0000 |
---|---|---|
committer | Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at> | 2016-01-04 03:05:15 +0000 |
commit | 72587f85ec0f85719c163905933e31a946f54bdf (patch) | |
tree | 65b772847d7325b0739a7a74a455644cca8db997 /programmer.h | |
parent | 631bb021359e8bc85c40d4700ca276667c0f97ed (diff) | |
download | flashrom-72587f85ec0f85719c163905933e31a946f54bdf.tar.gz flashrom-72587f85ec0f85719c163905933e31a946f54bdf.tar.bz2 flashrom-72587f85ec0f85719c163905933e31a946f54bdf.zip |
serprog: allow to omit specifying a baud rate
On USB-based serial connections (VCP) the requested baud rate usually
does not matter (much). Remove the arbitrary restriction and use whatever
default values the OS/hardware provides.
Corresponding to flashrom svn r1907.
Signed-off-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at>
Acked-by: Urja Rannikko <urjaman@gmail.com>
Diffstat (limited to 'programmer.h')
-rw-r--r-- | programmer.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/programmer.h b/programmer.h index 3bf292d8d..97f0ffa6e 100644 --- a/programmer.h +++ b/programmer.h @@ -719,10 +719,8 @@ typedef int fdtype; #endif void sp_flush_incoming(void); -fdtype sp_openserport(char *dev, unsigned int baud); -int serialport_config(fdtype fd, unsigned int baud); +fdtype sp_openserport(char *dev, int baud); extern fdtype sp_fd; -/* expose serialport_shutdown as it's currently used by buspirate */ int serialport_shutdown(void *data); int serialport_write(const unsigned char *buf, unsigned int writecnt); int serialport_write_nonblock(const unsigned char *buf, unsigned int writecnt, unsigned int timeout, unsigned int *really_wrote); |