diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2024-01-06 11:35:37 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2024-01-06 11:35:37 -0800 |
commit | 52b1853b080a082ec3749c3a9577f6c71b1d4a90 (patch) | |
tree | b8decd37b14e969900583f40e760e53571395200 /Documentation | |
parent | 95c8a35f1c017327eab3b6a2ff5c04255737c856 (diff) | |
parent | a3368e1186e3ce8e38f78cbca019622095b1f331 (diff) | |
download | lwn-52b1853b080a082ec3749c3a9577f6c71b1d4a90.tar.gz lwn-52b1853b080a082ec3749c3a9577f6c71b1d4a90.zip |
Merge tag 'i2c-for-6.7-final' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux
Pull i2c fixes from Wolfram Sang:
"Improve the detection when to run atomic transfer handlers for kernels
with preemption disabled. This removes some false positive splats a
number of users were seeing if their driver didn't have support for
atomic transfers.
Also, fix a typo in the docs while we are here"
* tag 'i2c-for-6.7-final' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux:
i2c: core: Fix atomic xfer check for non-preempt config
Documentation/i2c: fix spelling error in i2c-address-translators
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/i2c/i2c-address-translators.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/i2c/i2c-address-translators.rst b/Documentation/i2c/i2c-address-translators.rst index b22ce9f41ecf..6845c114e472 100644 --- a/Documentation/i2c/i2c-address-translators.rst +++ b/Documentation/i2c/i2c-address-translators.rst @@ -71,7 +71,7 @@ Transaction: - Physical I2C transaction on bus A, slave address 0x20 - ATR chip detects transaction on address 0x20, finds it in table, propagates transaction on bus B with address translated to 0x10, - keeps clock streched on bus A waiting for reply + keeps clock stretched on bus A waiting for reply - Slave X chip (on bus B) detects transaction at its own physical address 0x10 and replies normally - ATR chip stops clock stretching and forwards reply on bus A, |