diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2014-02-18 09:54:27 -0300 |
---|---|---|
committer | Roland Dreier <roland@purestorage.com> | 2014-03-17 16:26:38 -0700 |
commit | 970918b32b030e9b3966e5ccb5f4a5a5b515a5b1 (patch) | |
tree | c018af436167da1d973176771a7592e56ea84d30 /drivers/infiniband | |
parent | cfbf8d4857c26a8a307fb7cd258074c9dcd8c691 (diff) | |
download | op-kernel-dev-970918b32b030e9b3966e5ccb5f4a5a5b515a5b1.zip op-kernel-dev-970918b32b030e9b3966e5ccb5f4a5a5b515a5b1.tar.gz |
IB/usnic: Remove '0x' when using %pa format
%pa format already prints in hexadecimal format, so remove the '0x' annotation
to avoid a double '0x0x' pattern.
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Roland Dreier <roland@purestorage.com>
Diffstat (limited to 'drivers/infiniband')
-rw-r--r-- | drivers/infiniband/hw/usnic/usnic_uiom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/usnic/usnic_uiom.c b/drivers/infiniband/hw/usnic/usnic_uiom.c index 16755cd..801a1d6 100644 --- a/drivers/infiniband/hw/usnic/usnic_uiom.c +++ b/drivers/infiniband/hw/usnic/usnic_uiom.c @@ -286,7 +286,7 @@ iter_chunk: err = iommu_map(pd->domain, va_start, pa_start, size, flags); if (err) { - usnic_err("Failed to map va 0x%lx pa 0x%pa size 0x%zx with err %d\n", + usnic_err("Failed to map va 0x%lx pa %pa size 0x%zx with err %d\n", va_start, &pa_start, size, err); goto err_out; } |