Browse Source

drm/msm: adreno: fix build error without debugfs

The newly added a5xx support fails to build when debugfs is diabled:

drivers/gpu/drm/msm/adreno/a5xx_gpu.c:849:4: error: 'struct msm_gpu_funcs' has no member named 'show'
drivers/gpu/drm/msm/adreno/a5xx_gpu.c:849:11: error: 'a5xx_show' undeclared here (not in a function); did you mean 'a5xx_irq'?

This adds a missing #ifdef.

Fixes: b5f103ab98c7 ("drm/msm: gpu: Add A5XX target support")
Cc: stable@vger.kernel.org
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Rob Clark <robdclark@gmail.com>
Arnd Bergmann 8 years ago
parent
commit
0c3eaf1fbd
1 changed files with 2 additions and 0 deletions
  1. 2 0
      drivers/gpu/drm/msm/adreno/a5xx_gpu.c

+ 2 - 0
drivers/gpu/drm/msm/adreno/a5xx_gpu.c

@@ -856,7 +856,9 @@ static const struct adreno_gpu_funcs funcs = {
 		.idle = a5xx_idle,
 		.idle = a5xx_idle,
 		.irq = a5xx_irq,
 		.irq = a5xx_irq,
 		.destroy = a5xx_destroy,
 		.destroy = a5xx_destroy,
+#ifdef CONFIG_DEBUG_FS
 		.show = a5xx_show,
 		.show = a5xx_show,
+#endif
 	},
 	},
 	.get_timestamp = a5xx_get_timestamp,
 	.get_timestamp = a5xx_get_timestamp,
 };
 };