Skip to content

Commit

Permalink
remoteproc: print hex numbers with a leading 0x format
Browse files Browse the repository at this point in the history
There are couple of debug statements that are printing hexadecimal
numbers without the leading 0x. Fix these and use the standard 0x%x
format specifier so that there is no confusion when looking at the
traces.

Signed-off-by: Suman Anna <[email protected]>
Signed-off-by: Bjorn Andersson <[email protected]>
  • Loading branch information
sumananna authored and andersson committed Aug 13, 2016
1 parent 730f84c commit 9d7814a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/remoteproc/remoteproc_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ int rproc_alloc_vring(struct rproc_vdev *rvdev, int i)
}
notifyid = ret;

dev_dbg(dev, "vring%d: va %p dma %pad size %x idr %d\n",
dev_dbg(dev, "vring%d: va %p dma %pad size 0x%x idr %d\n",
i, va, &dma, size, notifyid);

rvring->va = va;
Expand All @@ -263,7 +263,7 @@ rproc_parse_vring(struct rproc_vdev *rvdev, struct fw_rsc_vdev *rsc, int i)
struct fw_rsc_vdev_vring *vring = &rsc->vring[i];
struct rproc_vring *rvring = &rvdev->vring[i];

dev_dbg(dev, "vdev rsc: vring%d: da %x, qsz %d, align %d\n",
dev_dbg(dev, "vdev rsc: vring%d: da 0x%x, qsz %d, align %d\n",
i, vring->da, vring->num, vring->align);

/* make sure reserved bytes are zeroes */
Expand Down Expand Up @@ -349,7 +349,7 @@ static int rproc_handle_vdev(struct rproc *rproc, struct fw_rsc_vdev *rsc,
return -EINVAL;
}

dev_dbg(dev, "vdev rsc: id %d, dfeatures %x, cfg len %d, %d vrings\n",
dev_dbg(dev, "vdev rsc: id %d, dfeatures 0x%x, cfg len %d, %d vrings\n",
rsc->id, rsc->dfeatures, rsc->config_len, rsc->num_of_vrings);

/* we currently support only two vrings per rvdev */
Expand Down Expand Up @@ -578,7 +578,7 @@ static int rproc_handle_carveout(struct rproc *rproc,
return -EINVAL;
}

dev_dbg(dev, "carveout rsc: name: %s, da %x, pa %x, len 0x%x, flags %x\n",
dev_dbg(dev, "carveout rsc: name: %s, da 0x%x, pa 0x%x, len 0x%x, flags 0x%x\n",
rsc->name, rsc->da, rsc->pa, rsc->len, rsc->flags);

carveout = kzalloc(sizeof(*carveout), GFP_KERNEL);
Expand Down

0 comments on commit 9d7814a

Please sign in to comment.