aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/block/cciss.c
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2015-12-06 22:19:40 +0000
committerMartin K. Petersen <martin.petersen@oracle.com>2016-01-04 19:45:01 -0500
commita8036dfba94d2ddf70cc9d7e9c627b179f957299 (patch)
treea504eda249224d659e7718ce915c7e4b93ac1ade /drivers/block/cciss.c
parentscsi_debug: Increase the reported optimal transfer length (diff)
downloadlinux-dev-a8036dfba94d2ddf70cc9d7e9c627b179f957299.tar.xz
linux-dev-a8036dfba94d2ddf70cc9d7e9c627b179f957299.zip
cciss: print max outstanding commands as a hex value
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>
Diffstat (limited to 'drivers/block/cciss.c')
-rw-r--r--drivers/block/cciss.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/block/cciss.c b/drivers/block/cciss.c
index 0422c47261c3..2758982ac193 100644
--- a/drivers/block/cciss.c
+++ b/drivers/block/cciss.c
@@ -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)));