mmc: cqhci: Fix a print format for the task descriptor
authorBen Chuang <benchuanggli@gmail.com>
Wed, 15 Jul 2020 07:33:44 +0000 (15:33 +0800)
committerUlf Hansson <ulf.hansson@linaro.org>
Fri, 24 Jul 2020 09:55:21 +0000 (11:55 +0200)
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>
drivers/mmc/host/cqhci.c

index 8cc277b4ffe9e08f641ecabd69e77b625586952f..cfa87dfa73d844fd2cbe1c040fca0c617daafab2 100644 (file)
@@ -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);
 }