summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/i2c_master.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/common/i2c_master.c b/common/i2c_master.c
index c14ed03d73..6d6fcf615c 100644
--- a/common/i2c_master.c
+++ b/common/i2c_master.c
@@ -431,7 +431,7 @@ int i2c_unwedge(int port)
* If we get here, a slave is holding the clock
* low and there is nothing we can do.
*/
- CPRINTS("I2C unwedge failed, SCL is being held low");
+ CPUTS("I2C unwedge failed, SCL is being held low");
ret = EC_ERROR_UNKNOWN;
goto unwedge_done;
}
@@ -444,7 +444,7 @@ int i2c_unwedge(int port)
if (i2c_raw_get_sda(port))
goto unwedge_done;
- CPRINTS("I2C unwedge called with SDA held low");
+ CPUTS("I2C unwedge called with SDA held low");
/* Keep trying to unwedge the SDA line until we run out of attempts. */
for (i = 0; i < UNWEDGE_SDA_ATTEMPTS; i++) {
@@ -479,11 +479,11 @@ int i2c_unwedge(int port)
}
if (!i2c_raw_get_sda(port)) {
- CPRINTS("I2C unwedge failed, SDA still low");
+ CPUTS("I2C unwedge failed, SDA still low");
ret = EC_ERROR_UNKNOWN;
}
if (!i2c_raw_get_scl(port)) {
- CPRINTS("I2C unwedge failed, SCL still low");
+ CPUTS("I2C unwedge failed, SCL still low");
ret = EC_ERROR_UNKNOWN;
}