From 8fae3e8eb966f221155519e8a7eaeb332057dcf0 Mon Sep 17 00:00:00 2001 From: Thomas Jarosch Date: Tue, 25 Mar 2008 09:20:09 +0000 Subject: [PATCH] libftdi: (tomj) fix strange characters in the comment lines --- src/ftdi.c | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ftdi.c b/src/ftdi.c index b5cb4f3..f5d09a9 100644 --- a/src/ftdi.c +++ b/src/ftdi.c @@ -1532,10 +1532,10 @@ int ftdi_eeprom_build(struct ftdi_eeprom *eeprom, unsigned char *output) output[0x07] = 0x02; // Addr 08: Config descriptor -    // Bit 7: always 1 -    // Bit 6: 1 if this device is self powered, 0 if bus powered -    // Bit 5: 1 if this device uses remote wakeup -    // Bit 4: 1 if this device is battery powered + // Bit 7: always 1 + // Bit 6: 1 if this device is self powered, 0 if bus powered + // Bit 5: 1 if this device uses remote wakeup + // Bit 4: 1 if this device is battery powered j = 0x80; if (eeprom->self_powered == 1) j |= 0x40; -- 1.7.1