diff options
| author | Easwar Hariharan <[email protected]> | 2024-07-11 05:27:32 +0000 |
|---|---|---|
| committer | Jakub Kicinski <[email protected]> | 2024-07-13 23:02:35 +0000 |
| commit | ba88b47816a2089cd270a38fc002bc7df13f8ebe (patch) | |
| tree | dbe50df61e5966344ac2cba557d2ce5a8d6f0750 | |
| parent | net: phy: dp83td510: add cable testing support (diff) | |
| download | kernel-ba88b47816a2089cd270a38fc002bc7df13f8ebe.tar.gz kernel-ba88b47816a2089cd270a38fc002bc7df13f8ebe.zip | |
sfc: falcon: Make I2C terminology more inclusive
I2C v7, SMBus 3.2, and I3C 1.1.1 specifications have replaced "master/slave"
with more appropriate terms. Inspired by Wolfram's series to fix drivers/i2c/,
fix the terminology for users of I2C_ALGOBIT bitbanging interface, now that
the approved verbiage exists in the specification.
Reviewed-by: Martin Habets <[email protected]>
Reviewed-by: Simon Horman <[email protected]>
Signed-off-by: Easwar Hariharan <[email protected]>
Link: https://patch.msgid.link/[email protected]
Signed-off-by: Jakub Kicinski <[email protected]>
| -rw-r--r-- | drivers/net/ethernet/sfc/falcon/falcon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/sfc/falcon/falcon.c b/drivers/net/ethernet/sfc/falcon/falcon.c index 7a1c9337081b..36114ce88034 100644 --- a/drivers/net/ethernet/sfc/falcon/falcon.c +++ b/drivers/net/ethernet/sfc/falcon/falcon.c @@ -367,7 +367,7 @@ static const struct i2c_algo_bit_data falcon_i2c_bit_operations = { .getsda = falcon_getsda, .getscl = falcon_getscl, .udelay = 5, - /* Wait up to 50 ms for slave to let us pull SCL high */ + /* Wait up to 50 ms for target to let us pull SCL high */ .timeout = DIV_ROUND_UP(HZ, 20), }; |
