Skip to content

Commit

Permalink
staging: etnaviv: quiten down some further debugging messages
Browse files Browse the repository at this point in the history
Signed-off-by: Russell King <[email protected]>
  • Loading branch information
Russell King authored and Sean Cross committed Jan 5, 2016
1 parent aae40bf commit 1744933
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/staging/etnaviv/etnaviv_gpu.c
Original file line number Diff line number Diff line change
Expand Up @@ -1092,17 +1092,17 @@ static int etnaviv_gpu_bind(struct device *dev, struct device *master,
int idx = gpu->pipe;
int ret;

dev_info(dev, "pre gpu[idx]: %p\n", priv->gpu[idx]);
dev_dbg(dev, "pre gpu[idx]: %p\n", priv->gpu[idx]);

if (priv->gpu[idx] == NULL) {
dev_info(dev, "adding core @idx %d\n", idx);
dev_dbg(dev, "adding core @idx %d\n", idx);
priv->gpu[idx] = gpu;
} else {
dev_err(dev, "failed to add core @idx %d\n", idx);
goto fail;
}

dev_info(dev, "post gpu[idx]: %p\n", priv->gpu[idx]);
dev_dbg(dev, "post gpu[idx]: %p\n", priv->gpu[idx]);

#ifdef CONFIG_PM
ret = pm_runtime_get_sync(gpu->dev);
Expand Down

0 comments on commit 1744933

Please sign in to comment.