summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMary Ruthven <mruthven@chromium.org>2021-01-06 08:50:24 -0800
committerCommit Bot <commit-bot@chromium.org>2021-01-08 00:24:12 +0000
commita1b83207fbbeb97471cb234576af59287a5d88ed (patch)
tree395333c47a5d43973e08a3488550de1d8ec1d0cf /docs
parent22088bd1a47ed7f09f35e5b4dd1efdc45b5855a3 (diff)
downloadchrome-ec-a1b83207fbbeb97471cb234576af59287a5d88ed.tar.gz
coil: cleanup i2c comments
Remove coil terms from i2c comments BUG=b:175244613 TEST=make buildall -j Change-Id: If056c099304e1fa676991e22ddaa9cb91ccfdeb3 Signed-off-by: Mary Ruthven <mruthven@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2613509 Reviewed-by: Namyoon Woo <namyoon@chromium.org>
Diffstat (limited to 'docs')
-rw-r--r--docs/case_closed_debugging_cr50.md2
-rw-r--r--docs/ec_terms.md12
2 files changed, 7 insertions, 7 deletions
diff --git a/docs/case_closed_debugging_cr50.md b/docs/case_closed_debugging_cr50.md
index 5a71bc42ad..0a9c76bbbd 100644
--- a/docs/case_closed_debugging_cr50.md
+++ b/docs/case_closed_debugging_cr50.md
@@ -64,7 +64,7 @@ Capability | Default | Function
`OpenNoLongPP` | `IfOpened` | Allow opening Cr50 without physical presence
`BatteryBypassPP` | `Always` | Allow opening Cr50 without physical presence and developer mode if the battery is removed
`UpdateNoTPMWipe` | `Always` | Allow updating Cr50 without wiping the TPM
-`I2C` | `IfOpened` | Allow access to the I2C master (used for measuring power)
+`I2C` | `IfOpened` | Allow access to the I2C controller (used for measuring power)
`FlashRead` | `Always` | Allow dumping a hash of the AP or EC flash
`OpenNoDevMode` | `IfOpened` | Allow opening Cr50 without developer mode
`OpenFromUSB` | `IfOpened` | Allow opening Cr50 from USB
diff --git a/docs/ec_terms.md b/docs/ec_terms.md
index 8c3e4e2f48..3242302940 100644
--- a/docs/ec_terms.md
+++ b/docs/ec_terms.md
@@ -92,17 +92,17 @@
* **I/O Expander**{#ioexpander}
- An [I2C](#i2c) slave device that provides additional GPIO signals (anywhere
+ An [I2C](#i2c) periph device that provides additional GPIO signals (anywhere
from 8 - 32 signals). GPIOs behind an I/O expander are written and read
- using I2C register accesses from the I2C master.
+ using I2C register accesses from the I2C controller.
* **I2C - Inter-Integrated Circuit**{#i2c}
A 2-wire synchronous communication bus, consisting of a clock signal and a
- bidirectional data signal. An I2C bus typically contains one master device
- and one more slave devices. The I2C standard defines supported clock speeds
- of 100 KHz and 400 KHz. The full [I2C Specification] is available from NXP
- (formerly Phillips).
+ bidirectional data signal. An I2C bus typically contains one controller
+ device and one more periph devices. The I2C standard defines supported
+ clock speeds of 100 KHz and 400 KHz. The full [I2C Specification] is
+ available from NXP (formerly Phillips).
* **LED - Light Emitting Diode**{#led}