diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2015-03-05 20:31:37 +0100 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2015-06-12 21:52:46 +0200 |
commit | 2d278f5414ae9cd535a7bdefaba2e2de38e116c7 (patch) | |
tree | be977250425d93c0ccfb470c90c3fa6a0a08ea7e /drivers/gpu/drm/omapdrm/omap_crtc.c | |
parent | drm: omapdrm: Fix page flip race with CRTC disable (diff) | |
download | linux-2d278f5414ae9cd535a7bdefaba2e2de38e116c7.tar.xz linux-2d278f5414ae9cd535a7bdefaba2e2de38e116c7.zip |
drm: omapdrm: Clean up #include's
Use the <...> include style instead of "..." for DRM headers and sort
the headers alphabetically to ease detection of duplicates.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/gpu/drm/omapdrm/omap_crtc.c')
-rw-r--r-- | drivers/gpu/drm/omapdrm/omap_crtc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/gpu/drm/omapdrm/omap_crtc.c b/drivers/gpu/drm/omapdrm/omap_crtc.c index 68abc4d7fa0d..6840ed5c45a7 100644 --- a/drivers/gpu/drm/omapdrm/omap_crtc.c +++ b/drivers/gpu/drm/omapdrm/omap_crtc.c @@ -19,12 +19,12 @@ #include <linux/completion.h> -#include "omap_drv.h" - +#include <drm/drm_crtc.h> +#include <drm/drm_crtc_helper.h> #include <drm/drm_mode.h> #include <drm/drm_plane_helper.h> -#include "drm_crtc.h" -#include "drm_crtc_helper.h" + +#include "omap_drv.h" #define to_omap_crtc(x) container_of(x, struct omap_crtc, base) |