sleep_us, timeout_us);
 }
 
-static int tc_aux_wait_busy(struct tc_data *tc, unsigned int timeout_ms)
+static int tc_aux_wait_busy(struct tc_data *tc)
 {
-       return tc_poll_timeout(tc, DP0_AUXSTATUS, AUX_BUSY, 0,
-                              1000, 1000 * timeout_ms);
+       return tc_poll_timeout(tc, DP0_AUXSTATUS, AUX_BUSY, 0, 1000, 100000);
 }
 
 static int tc_aux_write_data(struct tc_data *tc, const void *data,
        if (size == 0)
                return 0;
 
-       ret = tc_aux_wait_busy(tc, 100);
+       ret = tc_aux_wait_busy(tc);
        if (ret)
                return ret;
 
        if (ret)
                return ret;
 
-       ret = tc_aux_wait_busy(tc, 100);
+       ret = tc_aux_wait_busy(tc);
        if (ret)
                return ret;