diff options
author | Maciej W. Rozycki <macro@linux-mips.org> | 2008-05-11 20:37:05 +0200 |
---|---|---|
committer | Jean Delvare <khali@hyperion.delvare> | 2008-05-11 20:37:05 +0200 |
commit | b3eb5a0bc3c359dbb5ccb0708df18525ab6a1430 (patch) | |
tree | 5d50f2855a2f4f86f6f888496f64f40e756ce0ed /drivers | |
parent | 88b283281f1c783a79af175c400b5d20f10af2aa (diff) | |
download | kernel_samsung_espresso10-b3eb5a0bc3c359dbb5ccb0708df18525ab6a1430.zip kernel_samsung_espresso10-b3eb5a0bc3c359dbb5ccb0708df18525ab6a1430.tar.gz kernel_samsung_espresso10-b3eb5a0bc3c359dbb5ccb0708df18525ab6a1430.tar.bz2 |
i2c-sibyte: Correct a comment about frequency
The frequency may have been once hardcoded to 100 kHz, but currently it is
passed as an argument to i2c_sibyte_add_bus(), so update the comment to
match code. While at it, reformat a nearby comment for consistency. No
functional changes.
Signed-off-by: Maciej W. Rozycki <macro@linux-mips.org>
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/i2c/busses/i2c-sibyte.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/i2c/busses/i2c-sibyte.c b/drivers/i2c/busses/i2c-sibyte.c index 8fbbdb4..48e0a4d 100644 --- a/drivers/i2c/busses/i2c-sibyte.c +++ b/drivers/i2c/busses/i2c-sibyte.c @@ -136,10 +136,10 @@ int __init i2c_sibyte_add_bus(struct i2c_adapter *i2c_adap, int speed) { struct i2c_algo_sibyte_data *adap = i2c_adap->algo_data; - /* register new adapter to i2c module... */ + /* Register new adapter to i2c module... */ i2c_adap->algo = &i2c_sibyte_algo; - /* Set the frequency to 100 kHz */ + /* Set the requested frequency. */ csr_out32(speed, SMB_CSR(adap,R_SMB_FREQ)); csr_out32(0, SMB_CSR(adap,R_SMB_CONTROL)); |