Skip to content

Commit 1744933

Browse files
Russell KingSean Cross
authored andcommitted
staging: etnaviv: quiten down some further debugging messages
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
1 parent aae40bf commit 1744933

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

drivers/staging/etnaviv/etnaviv_gpu.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1092,17 +1092,17 @@ static int etnaviv_gpu_bind(struct device *dev, struct device *master,
10921092
int idx = gpu->pipe;
10931093
int ret;
10941094

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

10971097
if (priv->gpu[idx] == NULL) {
1098-
dev_info(dev, "adding core @idx %d\n", idx);
1098+
dev_dbg(dev, "adding core @idx %d\n", idx);
10991099
priv->gpu[idx] = gpu;
11001100
} else {
11011101
dev_err(dev, "failed to add core @idx %d\n", idx);
11021102
goto fail;
11031103
}
11041104

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

11071107
#ifdef CONFIG_PM
11081108
ret = pm_runtime_get_sync(gpu->dev);

0 commit comments

Comments
 (0)