The branch, master has been updated
via a00c0a850b7fc6a3f6f7491df7f45a21ac957fa2 (commit)
from 74387f27647e7123e233d31d36daedc6b485650a (commit)
- Log -----------------------------------------------------------------
commit a00c0a850b7fc6a3f6f7491df7f45a21ac957fa2
Author: Thomas Jarosch <thomas.jarosch@xxxxxxxxxxxxx>
Date: Fri Apr 26 14:34:40 2013 +0200
Fix typo in error message
Inspired by patch from Matthias Brugger <matthias.bgg@xxxxxxxxx>
-----------------------------------------------------------------------
Summary of changes:
src/ftdi.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/ftdi.c b/src/ftdi.c
index 3c86456..c19810b 100644
--- a/src/ftdi.c
+++ b/src/ftdi.c
@@ -4126,7 +4126,7 @@ int ftdi_write_eeprom_location(struct ftdi_context *ftdi,
int eeprom_addr,
}
if (ftdi_read_eeprom_location( ftdi, chip_type_location>>1, &chip_type))
- ftdi_error_return(-5, "Reading failed failed");
+ ftdi_error_return(-5, "Reading failed");
fprintf(stderr," loc 0x%04x val 0x%04x\n", chip_type_location,chip_type);
if ((chip_type & 0xff) != 0x66)
{
@@ -4232,7 +4232,7 @@ int ftdi_erase_eeprom(struct ftdi_context *ftdi)
NULL, 0, ftdi->usb_write_timeout) != 0)
ftdi_error_return(-3, "Writing magic failed");
if (ftdi_read_eeprom_location( ftdi, 0x00, &eeprom_value))
- ftdi_error_return(-4, "Reading failed failed");
+ ftdi_error_return(-4, "Reading failed");
if (eeprom_value == MAGIC)
{
ftdi->eeprom->chip = 0x46;
@@ -4240,13 +4240,13 @@ int ftdi_erase_eeprom(struct ftdi_context *ftdi)
else
{
if (ftdi_read_eeprom_location( ftdi, 0x40, &eeprom_value))
- ftdi_error_return(-4, "Reading failed failed");
+ ftdi_error_return(-4, "Reading failed");
if (eeprom_value == MAGIC)
ftdi->eeprom->chip = 0x56;
else
{
if (ftdi_read_eeprom_location( ftdi, 0xc0, &eeprom_value))
- ftdi_error_return(-4, "Reading failed failed");
+ ftdi_error_return(-4, "Reading failed");
if (eeprom_value == MAGIC)
ftdi->eeprom->chip = 0x66;
else
hooks/post-receive
--
A library to talk to FTDI chips
--
libftdi-git - see http://www.intra2net.com/en/developer/libftdi for details.
To unsubscribe send a mail to libftdi-git+unsubscribe@xxxxxxxxxxxxxxxxxxxxxxx
|