[PATCH] drm: rockchip: select DRM_GEM_CMA_HELPER

2016-06-16 Thread Daniel Vetter
On Thu, Jun 16, 2016 at 02:27:57PM +0200, Arnd Bergmann wrote: > The rockchip drm driver started using drm_gem_cma_vm_ops, but that might > not be part of the kernel, causing the link to fail: > > drivers/gpu/built-in.o:(.data+0xb234): undefined reference to > `drm_gem_cma_vm_ops' > > This adds

[PATCH] drm: rockchip: select DRM_GEM_CMA_HELPER

2016-06-16 Thread Arnd Bergmann
The rockchip drm driver started using drm_gem_cma_vm_ops, but that might not be part of the kernel, causing the link to fail: drivers/gpu/built-in.o:(.data+0xb234): undefined reference to `drm_gem_cma_vm_ops' This adds a Kconfig 'select' statement to enable it like the other user do. Signed-off