diff options
Diffstat (limited to 'common/cmd_i2c.c')
| -rw-r--r-- | common/cmd_i2c.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/common/cmd_i2c.c b/common/cmd_i2c.c index aac7e9a6c..91bf25b6b 100644 --- a/common/cmd_i2c.c +++ b/common/cmd_i2c.c @@ -529,9 +529,9 @@ mod_i2c_mem(cmd_tbl_t *cmdtp, int incrflag, int flag, int argc, char *argv[])  		}  	} while (nbytes); -	chip = i2c_mm_last_chip; -	addr = i2c_mm_last_addr; -	alen = i2c_mm_last_alen; +	i2c_mm_last_chip = chip; +	i2c_mm_last_addr = addr; +	i2c_mm_last_alen = alen;  	return 0;  } |