mutex_lock(&stlc->mutex);
if (count != RSSI_CAL_ARRAY_LEN) {
- stlc45xx_error("invalid cal_rssi length: %d", count);
+ stlc45xx_error("invalid cal_rssi length: %zu", count);
count = 0;
goto out_unlock;
}
mutex_lock(&stlc->mutex);
if (count != CHANNEL_CAL_ARRAY_LEN) {
- stlc45xx_error("invalid cal_channels size: %d ", count);
+ stlc45xx_error("invalid cal_channels size: %zu ", count);
count = 0;
goto out_unlock;
}
/* not enough room */
pos = -1;
- stlc45xx_debug(DEBUG_TXBUFFER, "txbuffer: find %d B: 0x%x", len, pos);
+ stlc45xx_debug(DEBUG_TXBUFFER, "txbuffer: find %zu B: 0x%x", len, pos);
out:
return pos;
}
if (fw->size % 4) {
- stlc45xx_error("firmware size is not multiple of 32bit: %d",
+ stlc45xx_error("firmware size is not multiple of 32bit: %zu",
fw->size);
return -EILSEQ; /* Illegal byte sequence */;
}
if (fw->size < 1000) {
- stlc45xx_error("firmware is too small: %d", fw->size);
+ stlc45xx_error("firmware is too small: %zu", fw->size);
return -EILSEQ;
}
stlc45xx_debug(DEBUG_FUNC, "%s", __func__);
- stlc45xx_debug(DEBUG_TX, "tx frame 0x%p %d B", buf, len);
+ stlc45xx_debug(DEBUG_TX, "tx frame 0x%p %zu B", buf, len);
stlc45xx_dump(DEBUG_TX_CONTENT, buf, len);
stlc45xx_wakeup(stlc);