From 13323e77ff91a85154cfa5f504ed4609fb8cbfc7 Mon Sep 17 00:00:00 2001 From: Yuval Peress Date: Fri, 30 Oct 2020 13:16:22 -0600 Subject: Replace I2C_GET_ADDR with I2C_STRIP_FLAGS The new I2C_STRIP_FLAGS macro was added to avoid conflict with Zephyr's macro. This CL performs the migration to that new API. BRANCH=none BUG=b:172067439 TEST=make runtests -j and built for various boards: eve, volteer, arcada_ish, atlas, hatch, kohaku, nocturne, samus, and scarlet Change-Id: I0583b647435db96ec268f186252b367bdc4118a6 Signed-off-by: Yuval Peress Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2511097 Reviewed-by: Jett Rink Reviewed-by: Jack Rosenthal Commit-Queue: Jett Rink --- chip/stm32/i2c-stm32l.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'chip/stm32/i2c-stm32l.c') diff --git a/chip/stm32/i2c-stm32l.c b/chip/stm32/i2c-stm32l.c index 80d3434c74..2edcb1c0b6 100644 --- a/chip/stm32/i2c-stm32l.c +++ b/chip/stm32/i2c-stm32l.c @@ -169,7 +169,7 @@ int chip_i2c_xfer(const int port, const uint8_t *out, int out_bytes, uint8_t *in, int in_bytes, int flags) { - int addr_8bit = I2C_GET_ADDR(slave_addr_flags) << 1; + int addr_8bit = I2C_STRIP_FLAGS(slave_addr_flags) << 1; int started = (flags & I2C_XFER_START) ? 0 : 1; int rv = EC_SUCCESS; int i; -- cgit v1.2.1