From 39d09a676b29a34a890a3c8a8a78d22cde8208d9 Mon Sep 17 00:00:00 2001 From: hailfinger Date: Wed, 10 Nov 2010 03:22:39 +0000 Subject: ft2232_spi ftdi_usb_open() is called with the constant FTDI_VID vendor ID. Fix it by using the programmer-type-dependent ft2232_vid variable, to allow programmers with other vendor IDs. Signed-off-by: Alex Badea Acked-by: Carl-Daniel Hailfinger git-svn-id: https://code.coreboot.org/svn/flashrom/trunk@1230 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- ft2232_spi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ft2232_spi.c') diff --git a/ft2232_spi.c b/ft2232_spi.c index 86f3b4a..91eb9e4 100644 --- a/ft2232_spi.c +++ b/ft2232_spi.c @@ -179,7 +179,7 @@ int ft2232_spi_init(void) return EXIT_FAILURE; // TODO } - f = ftdi_usb_open(ftdic, FTDI_VID, ft2232_type); + f = ftdi_usb_open(ftdic, ft2232_vid, ft2232_type); if (f < 0 && f != -5) { msg_perr("Unable to open FTDI device: %d (%s)\n", f, -- cgit v1.2.1