Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 329778
b: refs/heads/master
c: d09f53a
h: refs/heads/master
v: v3
  • Loading branch information
Emil Goode authored and Ohad Ben-Cohen committed Oct 2, 2012
1 parent c992bbe commit 7d4eae6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7168d914a782086e217214c57ddfc7cc4b738c0c
refs/heads/master: d09f53a735bae43806a77754312a45d3f1198342
10 changes: 6 additions & 4 deletions trunk/drivers/remoteproc/remoteproc_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -231,8 +231,8 @@ int rproc_alloc_vring(struct rproc_vdev *rvdev, int i)
/* Store largest notifyid */
rproc->max_notifyid = max(rproc->max_notifyid, notifyid);

dev_dbg(dev, "vring%d: va %p dma %x size %x idr %d\n", i, va,
dma, size, notifyid);
dev_dbg(dev, "vring%d: va %p dma %llx size %x idr %d\n", i, va,
(unsigned long long)dma, size, notifyid);

rvring->va = va;
rvring->dma = dma;
Expand Down Expand Up @@ -586,7 +586,8 @@ static int rproc_handle_carveout(struct rproc *rproc,
goto free_carv;
}

dev_dbg(dev, "carveout va %p, dma %x, len 0x%x\n", va, dma, rsc->len);
dev_dbg(dev, "carveout va %p, dma %llx, len 0x%x\n", va,
(unsigned long long)dma, rsc->len);

/*
* Ok, this is non-standard.
Expand Down Expand Up @@ -631,7 +632,8 @@ static int rproc_handle_carveout(struct rproc *rproc,
mapping->len = rsc->len;
list_add_tail(&mapping->node, &rproc->mappings);

dev_dbg(dev, "carveout mapped 0x%x to 0x%x\n", rsc->da, dma);
dev_dbg(dev, "carveout mapped 0x%x to 0x%llx\n",
rsc->da, (unsigned long long)dma);
}

/*
Expand Down

0 comments on commit 7d4eae6

Please sign in to comment.