cciss: print max outstanding commands as a hex value
authorColin Ian King <colin.king@canonical.com>
Sun, 6 Dec 2015 22:19:40 +0000 (22:19 +0000)
committerMartin K. Petersen <martin.petersen@oracle.com>
Tue, 5 Jan 2016 00:45:01 +0000 (19:45 -0500)
The max outstanding commands is being printed with a 0x prefix to
suggest it is a hex value, when in fact the integer decimal %d format
specifier is being used and this is a bit confusing. Use %x instead to
match the proceeding 0x prefix.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/block/cciss.c

index 0422c47261c3a06ad7bc6796d09ae5a84603a514..2758982ac19364a54ef6723179d236d9e359d082 100644 (file)
@@ -3854,7 +3854,7 @@ static void print_cfg_table(ctlr_info_t *h)
               readl(&(tb->HostWrite.CoalIntDelay)));
        dev_dbg(&h->pdev->dev, "   Coalesce Interrupt Count = 0x%x\n",
               readl(&(tb->HostWrite.CoalIntCount)));
-       dev_dbg(&h->pdev->dev, "   Max outstanding commands = 0x%d\n",
+       dev_dbg(&h->pdev->dev, "   Max outstanding commands = 0x%x\n",
               readl(&(tb->CmdsOutMax)));
        dev_dbg(&h->pdev->dev, "   Bus Types = 0x%x\n",
                readl(&(tb->BusTypes)));
This page took 0.037493 seconds and 5 git commands to generate.