1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-06-30 21:52:36 +02:00

Fix sp_openserport users on Windows

Corresponding to flashrom svn r1627.

Signed-off-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at>
Acked-by: Idwer Vollering <vidwer@gmail.com>
This commit is contained in:
Stefan Tauner
2012-11-30 16:46:45 +00:00
parent 62574aa5c0
commit acfc4c6c2f
3 changed files with 3 additions and 3 deletions

View File

@ -40,7 +40,7 @@ static int buspirate_serialport_setup(char *dev)
{
/* 115200bps, 8 databits, no parity, 1 stopbit */
sp_fd = sp_openserport(dev, 115200);
if (sp_fd < 0)
if (sp_fd == SER_INV_FD)
return 1;
return 0;
}