1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-07-01 14:11:15 +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

@ -116,7 +116,7 @@ int pony_spi_init(void)
arg = extract_programmer_param("dev");
if (arg && strlen(arg)) {
sp_fd = sp_openserport(arg, 9600);
if (sp_fd < 0) {
if (sp_fd == SER_INV_FD) {
free(arg);
return 1;
}