]> git.baikalelectronics.ru Git - kernel.git/commit
drm/msm: fix building without debugfs
authorArnd Bergmann <arnd@arndb.de>
Mon, 26 Feb 2018 09:49:26 +0000 (10:49 +0100)
committerRob Clark <robdclark@gmail.com>
Mon, 19 Mar 2018 10:33:39 +0000 (06:33 -0400)
commit9aa19ce093d6938135e4416b8535adc2bb36583c
tree01419bce2320c247e2e1e25b1b04acd2050e6218
parenta754d9112711109dc92c159a910694e81b42604d
drm/msm: fix building without debugfs

The adreno driver stopped building when CONFIG_DEBUGFS is disabled:

drivers/gpu/drm/msm/adreno/adreno_device.c: In function 'adreno_load_gpu':
drivers/gpu/drm/msm/adreno/adreno_device.c:153:16: error: 'const struct msm_gpu_funcs' has no member named 'debugfs_init'
  if (gpu->funcs->debugfs_init) {
                ^~
drivers/gpu/drm/msm/adreno/adreno_device.c:154:13: error: 'const struct msm_gpu_funcs' has no member named 'debugfs_init'
   gpu->funcs->debugfs_init(gpu, dev->primary);
             ^~

This adds an #ifdef around the code that references the hidden
pointer.

Fixes: 7de5027226c6 ("drm/msm: add a5xx specific debugfs")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Rob Clark <robdclark@gmail.com>
drivers/gpu/drm/msm/adreno/adreno_device.c