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
This commit is contained in:
commit
902b2edfca
|
@ -13057,7 +13057,6 @@ F: Documentation/devicetree/bindings/net/qcom,dwmac.txt
|
||||||
|
|
||||||
QUALCOMM GENERIC INTERFACE I2C DRIVER
|
QUALCOMM GENERIC INTERFACE I2C DRIVER
|
||||||
M: Alok Chauhan <alokc@codeaurora.org>
|
M: Alok Chauhan <alokc@codeaurora.org>
|
||||||
M: Karthikeyan Ramasubramanian <kramasub@codeaurora.org>
|
|
||||||
L: linux-i2c@vger.kernel.org
|
L: linux-i2c@vger.kernel.org
|
||||||
L: linux-arm-msm@vger.kernel.org
|
L: linux-arm-msm@vger.kernel.org
|
||||||
S: Supported
|
S: Supported
|
||||||
|
|
|
@ -709,11 +709,16 @@ static const struct i2c_algorithm xiic_algorithm = {
|
||||||
.functionality = xiic_func,
|
.functionality = xiic_func,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static const struct i2c_adapter_quirks xiic_quirks = {
|
||||||
|
.max_read_len = 255,
|
||||||
|
};
|
||||||
|
|
||||||
static const struct i2c_adapter xiic_adapter = {
|
static const struct i2c_adapter xiic_adapter = {
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
.name = DRIVER_NAME,
|
.name = DRIVER_NAME,
|
||||||
.class = I2C_CLASS_DEPRECATED,
|
.class = I2C_CLASS_DEPRECATED,
|
||||||
.algo = &xiic_algorithm,
|
.algo = &xiic_algorithm,
|
||||||
|
.quirks = &xiic_quirks,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue