[i2c][amlogic] Don't log errors for NACKs

According to the I2C spec there are valid reasons for devices to NACK
bytes from the host. For example, the SHTV3 sensor on Nelson NACKs
requests to read temperature data when a measurement is in progress.
Remove the error message in the Amlogic I2C driver to eliminate log spam
in these cases, and instead rely on client drivers to log when
unexpected errors occur.

Fixed: 81383
Test: No more I2C error messages on Nelson
Change-Id: Ia670918f0b5f25af549d194123533ae9c1716d99
Reviewed-on: https://fuchsia-review.googlesource.com/c/fuchsia/+/560367
Reviewed-by: Eric Holland <hollande@google.com>
Reviewed-by: Andres Oportus <andresoportus@google.com>
Commit-Queue: Braden Kell <bradenkell@google.com>
diff --git a/src/devices/i2c/drivers/aml-i2c/aml-i2c.c b/src/devices/i2c/drivers/aml-i2c/aml-i2c.c
index c9e5de8..854a469 100644
--- a/src/devices/i2c/drivers/aml-i2c/aml-i2c.c
+++ b/src/devices/i2c/drivers/aml-i2c/aml-i2c.c
@@ -101,7 +101,6 @@
     uint32_t reg = MmioRead32(&dev->virt_regs->control);
     if (reg & AML_I2C_CONTROL_REG_ERR) {
       zx_object_signal(dev->event, 0, I2C_ERROR_SIGNAL);
-      zxlogf(ERROR, "i2c: error on bus");
     } else {
       zx_object_signal(dev->event, 0, I2C_TXN_COMPLETE_SIGNAL);
     }