msm: mhi_dev: mhi_uci.c: Fix uci_log() formatting error

This patch changes '%d' to '%lu' to match their data types.

Change-Id: I1d766e60ece7d58b21b14ba97c5de1f3ebc2b57e
Signed-off-by: Arun KS <arunks@codeaurora.org>
tirimbino
Arun KS 5 years ago
parent 65119ded85
commit bf583a857d
  1. 2
      drivers/platform/msm/mhi_dev/mhi_uci.c

@ -1211,7 +1211,7 @@ static ssize_t mhi_uci_client_write(struct file *file,
if (count > TRB_MAX_DATA_SIZE) {
uci_log(UCI_DBG_ERROR,
"Too big write size: %d, max supported size is %d\n",
"Too big write size: %lu, max supported size is %d\n",
count, TRB_MAX_DATA_SIZE);
return -EFBIG;
}

Loading…
Cancel
Save