diff options
author | Tom Rini <trini@konsulko.com> | 2019-04-12 15:43:04 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-04-12 15:43:04 -0400 |
commit | 683754f0aae6a17f82370d5c902af54c316b8f35 (patch) | |
tree | edc336b2cdc7ec49945e7de064224bc009c1b4c8 /include | |
parent | 066cc7c6cf8bb4fcf2a372e7c19c12fdec0868e7 (diff) | |
parent | 84c80c63d53bc8a7779b1e7e7084ee3b2d20e768 (diff) | |
download | u-boot-683754f0aae6a17f82370d5c902af54c316b8f35.tar.gz u-boot-683754f0aae6a17f82370d5c902af54c316b8f35.tar.bz2 u-boot-683754f0aae6a17f82370d5c902af54c316b8f35.zip |
Merge branch 'master' of git://git.denx.de/u-boot-i2c
Diffstat (limited to 'include')
-rw-r--r-- | include/i2c.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/i2c.h b/include/i2c.h index ccffc19552..a5c760c711 100644 --- a/include/i2c.h +++ b/include/i2c.h @@ -68,9 +68,11 @@ struct dm_i2c_chip { * I2C bus udevice. * * @speed_hz: Bus speed in hertz (typically 100000) + * @max_transaction_bytes: Maximal size of single I2C transfer */ struct dm_i2c_bus { int speed_hz; + int max_transaction_bytes; }; /* |