drm/rockchip: Replace custom wait_for_vblanks with helper
authorTomasz Figa <tfiga@chromium.org>
Wed, 14 Sep 2016 12:54:58 +0000 (21:54 +0900)
committerSean Paul <seanpaul@chromium.org>
Wed, 21 Sep 2016 13:55:51 +0000 (06:55 -0700)
commit81c248f75a130c1ce46c67e8b05b37e8ffbbb33e
treefd273595e615342a52f964d7e77890c2d753a60e
parent47a7eb4597775ecdc29d2630d875a991f0449bf3
drm/rockchip: Replace custom wait_for_vblanks with helper

Currently the driver uses a custom function to wait for flip to complete
after an atomic commit. It was needed before because of two problems:
 - there is no hardware vblank counter, so the original helper would
   have a race condition with the vblank interrupt,
 - the driver didn't support unreferencing cursor framebuffers
   asynchronously to the commit, which was what the helper expected.
Since both problems have been solved by previous patches, we can now
make the driver use the generic helper and remove custom waiting code.

Signed-off-by: Tomasz Figa <tfiga@chromium.org>
drivers/gpu/drm/rockchip/rockchip_drm_drv.h
drivers/gpu/drm/rockchip/rockchip_drm_fb.c
drivers/gpu/drm/rockchip/rockchip_drm_vop.c