aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mmc
diff options
context:
space:
mode:
authorBen Chuang <benchuanggli@gmail.com>2020-07-15 15:33:44 +0800
committerUlf Hansson <ulf.hansson@linaro.org>2020-07-24 11:55:21 +0200
commit90508658d713c0469c056cea618c21b5610c3452 (patch)
treeb4c660bb99656ab5652155f015a05dbe100d3a0e /drivers/mmc
parentmmc: sdhci-of-arasan: fix timings allocation code (diff)
downloadlinux-dev-90508658d713c0469c056cea618c21b5610c3452.tar.xz
linux-dev-90508658d713c0469c056cea618c21b5610c3452.zip
mmc: cqhci: Fix a print format for the task descriptor
The format string of the task descriptor should be "%016llx". Signed-off-by: Ben Chuang <benchuanggli@gmail.com> Link: https://lore.kernel.org/r/20200715073344.8965-1-benchuanggli@gmail.com Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/mmc')
-rw-r--r--drivers/mmc/host/cqhci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/cqhci.c b/drivers/mmc/host/cqhci.c
index 8cc277b4ffe9..cfa87dfa73d8 100644
--- a/drivers/mmc/host/cqhci.c
+++ b/drivers/mmc/host/cqhci.c
@@ -422,7 +422,7 @@ static void cqhci_prep_task_desc(struct mmc_request *mrq,
CQHCI_BLK_COUNT(mrq->data->blocks) |
CQHCI_BLK_ADDR((u64)mrq->data->blk_addr);
- pr_debug("%s: cqhci: tag %d task descriptor 0x016%llx\n",
+ pr_debug("%s: cqhci: tag %d task descriptor 0x%016llx\n",
mmc_hostname(mrq->host), mrq->tag, (unsigned long long)*data);
}