From afbccdf8f933346a99ff7aea0b92c8cf4e966063 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guido=20G=C3=BCnther?= Date: Wed, 15 Dec 2021 14:34:53 +0100 Subject: [PATCH] etnaviv/drm: Print gpu model at debug verbosity MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Otherwise we print it at every application start. Signed-off-by: Guido Günther Reviewed-by: Christian Gmeiner Acked-by: Lucas Stach Part-of: --- src/etnaviv/drm/etnaviv_gpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/etnaviv/drm/etnaviv_gpu.c b/src/etnaviv/drm/etnaviv_gpu.c index 48a22b0ea5c..52956c415b8 100644 --- a/src/etnaviv/drm/etnaviv_gpu.c +++ b/src/etnaviv/drm/etnaviv_gpu.c @@ -63,7 +63,7 @@ struct etna_gpu *etna_gpu_new(struct etna_device *dev, unsigned int core) if (!gpu->model) goto fail; - INFO_MSG(" GPU model: 0x%x (rev %x)", gpu->model, gpu->revision); + DEBUG_MSG(" GPU model: 0x%x (rev %x)", gpu->model, gpu->revision); return gpu; fail: