pw_i2c_mcuxpresso: Fix bazel build

Change-Id: I77ba944534f9aeb444014dfe30fe896daadd5b7b
Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/155271
Pigweed-Auto-Submit: Austin Foxley <afoxley@google.com>
Reviewed-by: Ted Pudlik <tpudlik@google.com>
Commit-Queue: Auto-Submit <auto-submit@pigweed-service-accounts.iam.gserviceaccount.com>
Presubmit-Verified: CQ Bot Account <pigweed-scoped@luci-project-accounts.iam.gserviceaccount.com>
diff --git a/pw_i2c_mcuxpresso/BUILD.bazel b/pw_i2c_mcuxpresso/BUILD.bazel
index 140664b..1e9ab22 100644
--- a/pw_i2c_mcuxpresso/BUILD.bazel
+++ b/pw_i2c_mcuxpresso/BUILD.bazel
@@ -30,6 +30,7 @@
     ],
     deps = [
         "//pw_chrono:system_clock",
+        "//pw_i2c:address",
         "//pw_i2c:initiator",
         "//pw_status",
         "//pw_sync:interrupt_spin_lock",
diff --git a/pw_i2c_mcuxpresso/initiator.cc b/pw_i2c_mcuxpresso/initiator.cc
index 55b5717..ef59e2f 100644
--- a/pw_i2c_mcuxpresso/initiator.cc
+++ b/pw_i2c_mcuxpresso/initiator.cc
@@ -57,8 +57,8 @@
 
 McuxpressoInitiator::~McuxpressoInitiator() { I2C_MasterDeinit(base_); }
 
-void McuxpressoInitiator::TransferCompleteCallback(I2C_Type* base,
-                                                   i2c_master_handle_t* handle,
+void McuxpressoInitiator::TransferCompleteCallback(I2C_Type*,
+                                                   i2c_master_handle_t*,
                                                    status_t status,
                                                    void* initiator_ptr) {
   McuxpressoInitiator& initiator =