Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

docs: i2c: i2c-protocol: use same wording as smbus-protocol

In smbus-protocol.rst we use the text "Implemented by" for the same meaning
as "This corresponds to". Change everything to "Implemented by" for
coherency.

Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net>
Reported-by: Jean Delvare <jdelvare@suse.de>
Reviewed-by: Jean Delvare <jdelvare@suse.de>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>

authored by

Luca Ceresoli and committed by
Wolfram Sang
ca5dbb02 f6fcefa1

+3 -3
+3 -3
Documentation/i2c/i2c-protocol.rst
··· 28 28 Simple send transaction 29 29 ======================= 30 30 31 - This corresponds to i2c_master_send():: 31 + Implemented by i2c_master_send():: 32 32 33 33 S Addr Wr [A] Data [A] Data [A] ... [A] Data [A] P 34 34 ··· 36 36 Simple receive transaction 37 37 ========================== 38 38 39 - This corresponds to i2c_master_recv():: 39 + Implemented by i2c_master_recv():: 40 40 41 41 S Addr Rd [A] [Data] A [Data] A ... A [Data] NA P 42 42 ··· 44 44 Combined transactions 45 45 ===================== 46 46 47 - This corresponds to i2c_transfer(). 47 + Implemented by i2c_transfer(). 48 48 49 49 They are just like the above transactions, but instead of a stop 50 50 condition P a start condition S is sent and the transaction continues.