diff options
author | Jean Delvare <khali@linux-fr.org> | 2007-08-14 18:37:13 +0200 |
---|---|---|
committer | Jean Delvare <khali@hyperion.delvare> | 2007-08-14 18:37:13 +0200 |
commit | 002cf63191eb8b68b7fed48f014b87c456188acc (patch) | |
tree | f3ece0588f8593db41271a80348e03b700653cc9 /drivers/i2c | |
parent | 39d3520c92cf7a28c07229ca00cc35a1e8026c77 (diff) | |
download | op-kernel-dev-002cf63191eb8b68b7fed48f014b87c456188acc.zip op-kernel-dev-002cf63191eb8b68b7fed48f014b87c456188acc.tar.gz |
i2c-i801: Typo: erroneous
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Diffstat (limited to 'drivers/i2c')
-rw-r--r-- | drivers/i2c/busses/i2c-i801.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/i2c/busses/i2c-i801.c b/drivers/i2c/busses/i2c-i801.c index 8f5c686..289816d 100644 --- a/drivers/i2c/busses/i2c-i801.c +++ b/drivers/i2c/busses/i2c-i801.c @@ -272,11 +272,11 @@ static int i801_block_transaction_byte_by_byte(union i2c_smbus_data *data, /* Make sure the SMBus host is ready to start transmitting */ temp = inb_p(SMBHSTSTS); if (i == 1) { - /* Erronenous conditions before transaction: + /* Erroneous conditions before transaction: * Byte_Done, Failed, Bus_Err, Dev_Err, Intr, Host_Busy */ errmask = 0x9f; } else { - /* Erronenous conditions during transaction: + /* Erroneous conditions during transaction: * Failed, Bus_Err, Dev_Err, Intr */ errmask = 0x1e; } |