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

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'i2c/for-current' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux

Pull i2c fixes from Wolfram Sang:
"I2C has a driver bugfix and a MAINTAINERS fix"

* 'i2c/for-current' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux:
MAINTAINERS: Karthikeyan Ramasubramanian is MIA
i2c: xiic: Add max_read_len quirk

+5 -1
-1
MAINTAINERS
··· 13057 13057 13058 13058 QUALCOMM GENERIC INTERFACE I2C DRIVER 13059 13059 M: Alok Chauhan <alokc@codeaurora.org> 13060 - M: Karthikeyan Ramasubramanian <kramasub@codeaurora.org> 13061 13060 L: linux-i2c@vger.kernel.org 13062 13061 L: linux-arm-msm@vger.kernel.org 13063 13062 S: Supported
+5
drivers/i2c/busses/i2c-xiic.c
··· 709 709 .functionality = xiic_func, 710 710 }; 711 711 712 + static const struct i2c_adapter_quirks xiic_quirks = { 713 + .max_read_len = 255, 714 + }; 715 + 712 716 static const struct i2c_adapter xiic_adapter = { 713 717 .owner = THIS_MODULE, 714 718 .name = DRIVER_NAME, 715 719 .class = I2C_CLASS_DEPRECATED, 716 720 .algo = &xiic_algorithm, 721 + .quirks = &xiic_quirks, 717 722 }; 718 723 719 724