From: Thomas Jarosch Date: Tue, 25 Mar 2008 09:20:09 +0000 (+0000) Subject: libftdi: (tomj) fix strange characters in the comment lines X-Git-Tag: v0.12~5 X-Git-Url: http://developer.intra2net.com/git/?p=libftdi;a=commitdiff_plain;h=8fae3e8eb966f221155519e8a7eaeb332057dcf0 libftdi: (tomj) fix strange characters in the comment lines --- 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;