diff options
Diffstat (limited to 'serprog.c')
| -rw-r--r-- | serprog.c | 12 | 
1 files changed, 6 insertions, 6 deletions
| @@ -56,7 +56,7 @@ static int serprog_shutdown(void *data);  #define S_CMD_Q_BUSTYPE		0x05	/* Query supported bustypes                     */  #define S_CMD_Q_CHIPSIZE	0x06	/* Query supported chipsize (2^n format)        */  #define S_CMD_Q_OPBUF		0x07	/* Query operation buffer size                  */ -#define S_CMD_Q_WRNMAXLEN	0x08	/* Query opbuf-write-N maximum lenght           */ +#define S_CMD_Q_WRNMAXLEN	0x08	/* Query opbuf-write-N maximum length           */  #define S_CMD_R_BYTE		0x09	/* Read a single byte                           */  #define S_CMD_R_NBYTES		0x0A	/* Read n bytes                                 */  #define S_CMD_O_INIT		0x0B	/* Initialize operation buffer                  */ @@ -168,10 +168,10 @@ static void sp_synchronize(void)  	usleep(1000 * 1000);  	sp_flush_incoming(); -	/* Then try upto 8 times to send syncnop and get the correct special * -	 * return of NAK+ACK. Timing note: upto 10 characters, 10*50ms =     * -	 * upto 500ms per try, 8*0.5s = 4s; +1s (above) = upto 5s sync       * -	 * attempt, ~1s if immediate success.                                */ +	/* Then try up to 8 times to send syncnop and get the correct special * +	 * return of NAK+ACK. Timing note: up to 10 characters, 10*50ms =     * +	 * up to 500ms per try, 8*0.5s = 4s; +1s (above) = up to 5s sync      * +	 * attempt, ~1s if immediate success.                                 */  	for (i = 0; i < 8; i++) {  		int n;  		unsigned char c = S_CMD_SYNCNOP; @@ -180,7 +180,7 @@ static void sp_synchronize(void)  		msg_pdbg(".");  		fflush(stdout);  		for (n = 0; n < 10; n++) { -			c = sp_sync_read_timeout(5);	/* wait upto 50ms */ +			c = sp_sync_read_timeout(5);	/* wait up to 50ms */  			if (c != S_NAK)  				continue;  			c = sp_sync_read_timeout(2); | 
