Home
last modified time | relevance | path

Searched refs:STM32_I2C_MAX_LEN (Results 1 – 1 of 1) sorted by relevance

/u-boot/drivers/i2c/
A Dstm32f7_i2c.c106 #define STM32_I2C_MAX_LEN 0xff macro
305 if (msg->len > STM32_I2C_MAX_LEN) { in stm32_i2c_message_start()
306 cr2 |= STM32_I2C_CR2_NBYTES(STM32_I2C_MAX_LEN); in stm32_i2c_message_start()
332 if (msg->len > STM32_I2C_MAX_LEN) { in stm32_i2c_handle_reload()
333 cr2 |= STM32_I2C_CR2_NBYTES(STM32_I2C_MAX_LEN); in stm32_i2c_handle_reload()
424 int bytes_to_rw = msg->len > STM32_I2C_MAX_LEN ? in stm32_i2c_message_xfer()
425 STM32_I2C_MAX_LEN : msg->len; in stm32_i2c_message_xfer()
464 bytes_to_rw = msg->len > STM32_I2C_MAX_LEN ? in stm32_i2c_message_xfer()
465 STM32_I2C_MAX_LEN : msg->len; in stm32_i2c_message_xfer()

Completed in 5 milliseconds