diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2020-07-24 13:41:13 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2020-07-24 13:41:13 -0700 |
commit | c615035b29c3628a35ece192046e0e6658d96ab3 (patch) | |
tree | 20a872f78d51a047a04e934bf0ffb0bed641a8f1 /include | |
parent | b85bcb784fd84ef854f6a6d03a0c48c207d0b0ec (diff) | |
parent | 02b9aec59243c6240fc42884acc958602146ddf6 (diff) | |
download | linux-rpi-c615035b29c3628a35ece192046e0e6658d96ab3.tar.gz linux-rpi-c615035b29c3628a35ece192046e0e6658d96ab3.tar.bz2 linux-rpi-c615035b29c3628a35ece192046e0e6658d96ab3.zip |
Merge branch 'i2c/for-current' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux into master
Pull i2c fixes from Wolfram Sang:
"Again some driver bugfixes and some documentation fixes"
* 'i2c/for-current' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux:
i2c: i2c-qcom-geni: Fix DMA transfer race
i2c: rcar: always clear ICSAR to avoid side effects
MAINTAINERS: i2c: at91: handover maintenance to Codrin Ciubotariu
i2c: drop duplicated word in the header file
i2c: cadence: Clear HOLD bit at correct time in Rx path
Revert "i2c: cadence: Fix the hold bit setting"
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/i2c.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/i2c.h b/include/linux/i2c.h index b8b8963f8bb9..ee328cf80bd9 100644 --- a/include/linux/i2c.h +++ b/include/linux/i2c.h @@ -56,7 +56,7 @@ struct property_entry; * on a bus (or read from them). Apart from two basic transfer functions to * transmit one message at a time, a more complex version can be used to * transmit an arbitrary number of messages without interruption. - * @count must be be less than 64k since msg.len is u16. + * @count must be less than 64k since msg.len is u16. */ int i2c_transfer_buffer_flags(const struct i2c_client *client, char *buf, int count, u16 flags); |