diff options
author | Sean Paul <seanpaul@chromium.org> | 2016-09-21 06:14:53 -0700 |
---|---|---|
committer | Sean Paul <seanpaul@chromium.org> | 2016-09-21 23:36:53 -0700 |
commit | ce2f2c3f82baf91036195c30ee58455ad24797f4 (patch) | |
tree | 5658bc7c70d59745a3345b46dce0d92dbac555e1 | |
parent | f15e6bb06e160eb6c0345e4636b4c3bff7a17a53 (diff) | |
download | blackbird-obmc-linux-ce2f2c3f82baf91036195c30ee58455ad24797f4.tar.gz blackbird-obmc-linux-ce2f2c3f82baf91036195c30ee58455ad24797f4.zip |
drm/tilcdc: Add atomic and crtc headers to crtc.c
Also reorder alphabetically and fix up drm_flip_work header.
Reviewed-by: Daniel Vetter <daniel@ffwll.ch>
Signed-off-by: Sean Paul <seanpaul@chromium.org>
-rw-r--r-- | drivers/gpu/drm/tilcdc/tilcdc_crtc.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/gpu/drm/tilcdc/tilcdc_crtc.c b/drivers/gpu/drm/tilcdc/tilcdc_crtc.c index 208768922030..cb9df104fe5b 100644 --- a/drivers/gpu/drm/tilcdc/tilcdc_crtc.c +++ b/drivers/gpu/drm/tilcdc/tilcdc_crtc.c @@ -15,9 +15,11 @@ * this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "drm_flip_work.h" -#include <drm/drm_plane_helper.h> +#include <drm/drm_atomic.h> #include <drm/drm_atomic_helper.h> +#include <drm/drm_crtc.h> +#include <drm/drm_flip_work.h> +#include <drm/drm_plane_helper.h> #include "tilcdc_drv.h" #include "tilcdc_regs.h" |