forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop use of the deprecated drmP.h file. Replace with forwards / externals as appropriate. While touching the list of include files divide them up in blocks and sort them. v3: - fix build errors in exynos_drm_g2d.c (Inki Dae) The exynos_drm_g2d.c file is not built in the standard configurations and was therefore missed. Signed-off-by: Sam Ravnborg <[email protected]> Cc: Inki Dae <[email protected]> Cc: Joonyoung Shim <[email protected]> Cc: Seung-Woo Kim <[email protected]> Cc: Kyungmin Park <[email protected]> Cc: David Airlie <[email protected]> Cc: Daniel Vetter <[email protected]> Cc: Kukjin Kim <[email protected]> Cc: Krzysztof Kozlowski <[email protected]> Cc: Jingoo Han <[email protected]> Fixed merge conflict. Signed-off-by: Inki Dae <[email protected]>
- Loading branch information
Showing
24 changed files
with
154 additions
and
136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,19 +7,22 @@ | |
* Hyungwon Hwang <[email protected]> | ||
*/ | ||
|
||
#include <linux/platform_device.h> | ||
#include <linux/clk.h> | ||
#include <linux/component.h> | ||
#include <linux/iopoll.h> | ||
#include <linux/irq.h> | ||
#include <linux/mfd/syscon.h> | ||
#include <linux/of_device.h> | ||
#include <linux/of_gpio.h> | ||
#include <linux/platform_device.h> | ||
#include <linux/pm_runtime.h> | ||
#include <linux/regmap.h> | ||
|
||
#include "exynos_drm_drv.h" | ||
#include <drm/drm_fourcc.h> | ||
#include <drm/drm_vblank.h> | ||
|
||
#include "exynos_drm_crtc.h" | ||
#include "exynos_drm_drv.h" | ||
#include "exynos_drm_fb.h" | ||
#include "exynos_drm_plane.h" | ||
#include "regs-decon5433.h" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,6 @@ | |
* Akshu Agarwal <[email protected]> | ||
* Ajay Kumar <[email protected]> | ||
*/ | ||
#include <drm/drmP.h> | ||
#include <drm/exynos_drm.h> | ||
|
||
#include <linux/clk.h> | ||
#include <linux/component.h> | ||
|
@@ -21,10 +19,14 @@ | |
#include <video/of_display_timing.h> | ||
#include <video/of_videomode.h> | ||
|
||
#include <drm/drm_fourcc.h> | ||
#include <drm/drm_vblank.h> | ||
#include <drm/exynos_drm.h> | ||
|
||
#include "exynos_drm_crtc.h" | ||
#include "exynos_drm_plane.h" | ||
#include "exynos_drm_drv.h" | ||
#include "exynos_drm_fb.h" | ||
#include "exynos_drm_plane.h" | ||
#include "regs-decon7.h" | ||
|
||
/* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,25 +6,24 @@ | |
* Author: Jingoo Han <[email protected]> | ||
*/ | ||
|
||
#include <linux/module.h> | ||
#include <linux/platform_device.h> | ||
#include <linux/err.h> | ||
#include <linux/clk.h> | ||
#include <linux/of_graph.h> | ||
#include <linux/component.h> | ||
#include <linux/err.h> | ||
#include <linux/module.h> | ||
#include <linux/of_graph.h> | ||
#include <linux/platform_device.h> | ||
#include <linux/pm_runtime.h> | ||
#include <video/of_display_timing.h> | ||
#include <video/of_videomode.h> | ||
#include <video/videomode.h> | ||
|
||
#include <drm/drmP.h> | ||
#include <drm/bridge/analogix_dp.h> | ||
#include <drm/drm_atomic_helper.h> | ||
#include <drm/drm_crtc.h> | ||
#include <drm/drm_of.h> | ||
#include <drm/drm_panel.h> | ||
#include <drm/drm_print.h> | ||
#include <drm/drm_probe_helper.h> | ||
|
||
#include <drm/bridge/analogix_dp.h> | ||
#include <drm/exynos_drm.h> | ||
|
||
#include "exynos_drm_crtc.h" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,11 +8,11 @@ | |
* Seung-Woo Kim <[email protected]> | ||
*/ | ||
|
||
#include <drm/drmP.h> | ||
#include <drm/drm_atomic.h> | ||
#include <drm/drm_atomic_helper.h> | ||
#include <drm/drm_encoder.h> | ||
#include <drm/drm_probe_helper.h> | ||
#include <drm/drm_vblank.h> | ||
|
||
#include "exynos_drm_crtc.h" | ||
#include "exynos_drm_drv.h" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,11 +4,13 @@ | |
// Author: Inki Dae <[email protected]> | ||
// Author: Andrzej Hajda <[email protected]> | ||
|
||
#include <drm/drmP.h> | ||
#include <drm/exynos_drm.h> | ||
#include <linux/dma-iommu.h> | ||
#include <linux/dma-mapping.h> | ||
#include <linux/iommu.h> | ||
#include <linux/platform_device.h> | ||
|
||
#include <drm/drm_print.h> | ||
#include <drm/exynos_drm.h> | ||
|
||
#include "exynos_drm_drv.h" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,25 +7,23 @@ | |
* Seung-Woo Kim <[email protected]> | ||
*/ | ||
|
||
#include <linux/component.h> | ||
#include <linux/pm_runtime.h> | ||
#include <drm/drmP.h> | ||
|
||
#include <drm/drm_atomic.h> | ||
#include <drm/drm_atomic_helper.h> | ||
#include <drm/drm_fb_helper.h> | ||
#include <drm/drm_probe_helper.h> | ||
|
||
#include <linux/component.h> | ||
|
||
#include <drm/exynos_drm.h> | ||
|
||
#include "exynos_drm_drv.h" | ||
#include "exynos_drm_fbdev.h" | ||
#include "exynos_drm_fb.h" | ||
#include "exynos_drm_fbdev.h" | ||
#include "exynos_drm_g2d.h" | ||
#include "exynos_drm_gem.h" | ||
#include "exynos_drm_plane.h" | ||
#include "exynos_drm_ipp.h" | ||
#include "exynos_drm_plane.h" | ||
#include "exynos_drm_vidi.h" | ||
#include "exynos_drm_g2d.h" | ||
|
||
#define DRIVER_NAME "exynos" | ||
#define DRIVER_DESC "Samsung SoC DRM" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,19 +8,19 @@ | |
* Seung-Woo Kim <[email protected]> | ||
*/ | ||
|
||
#include <drm/drmP.h> | ||
#include <drm/drm_atomic.h> | ||
#include <drm/drm_atomic_helper.h> | ||
#include <drm/drm_crtc.h> | ||
#include <drm/drm_fb_helper.h> | ||
#include <drm/drm_fourcc.h> | ||
#include <drm/drm_gem_framebuffer_helper.h> | ||
#include <drm/drm_probe_helper.h> | ||
#include <uapi/drm/exynos_drm.h> | ||
#include <drm/exynos_drm.h> | ||
|
||
#include "exynos_drm_crtc.h" | ||
#include "exynos_drm_drv.h" | ||
#include "exynos_drm_fb.h" | ||
#include "exynos_drm_fbdev.h" | ||
#include "exynos_drm_crtc.h" | ||
|
||
static int check_fb_gem_memory_type(struct drm_device *drm_dev, | ||
struct exynos_drm_gem *exynos_gem) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,14 +8,15 @@ | |
* Seung-Woo Kim <[email protected]> | ||
*/ | ||
|
||
#include <drm/drmP.h> | ||
#include <linux/console.h> | ||
#include <linux/dma-mapping.h> | ||
|
||
#include <drm/drm_crtc.h> | ||
#include <drm/drm_fb_helper.h> | ||
#include <drm/drm_fourcc.h> | ||
#include <drm/drm_probe_helper.h> | ||
#include <drm/exynos_drm.h> | ||
|
||
#include <linux/console.h> | ||
|
||
#include "exynos_drm_drv.h" | ||
#include "exynos_drm_fb.h" | ||
#include "exynos_drm_fbdev.h" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,21 +6,22 @@ | |
* Jinyoung Jeon <[email protected]> | ||
* Sangmin Lee <[email protected]> | ||
*/ | ||
#include <linux/kernel.h> | ||
|
||
#include <linux/clk.h> | ||
#include <linux/component.h> | ||
#include <linux/platform_device.h> | ||
#include <linux/kernel.h> | ||
#include <linux/mfd/syscon.h> | ||
#include <linux/regmap.h> | ||
#include <linux/clk.h> | ||
#include <linux/pm_runtime.h> | ||
#include <linux/of.h> | ||
#include <linux/platform_device.h> | ||
#include <linux/pm_runtime.h> | ||
#include <linux/regmap.h> | ||
#include <linux/spinlock.h> | ||
|
||
#include <drm/drmP.h> | ||
#include <drm/exynos_drm.h> | ||
#include "regs-fimc.h" | ||
|
||
#include "exynos_drm_drv.h" | ||
#include "exynos_drm_ipp.h" | ||
#include "regs-fimc.h" | ||
|
||
/* | ||
* FIMC stands for Fully Interactive Mobile Camera and | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,26 +6,28 @@ | |
* Joonyoung Shim <[email protected]> | ||
* Inki Dae <[email protected]> | ||
*/ | ||
#include <drm/drmP.h> | ||
|
||
#include <linux/kernel.h> | ||
#include <linux/platform_device.h> | ||
#include <linux/clk.h> | ||
#include <linux/component.h> | ||
#include <linux/kernel.h> | ||
#include <linux/mfd/syscon.h> | ||
#include <linux/of.h> | ||
#include <linux/of_device.h> | ||
#include <linux/platform_device.h> | ||
#include <linux/pm_runtime.h> | ||
#include <linux/component.h> | ||
#include <linux/mfd/syscon.h> | ||
#include <linux/regmap.h> | ||
|
||
#include <video/of_display_timing.h> | ||
#include <video/of_videomode.h> | ||
#include <video/samsung_fimd.h> | ||
|
||
#include <drm/drm_fourcc.h> | ||
#include <drm/drm_vblank.h> | ||
#include <drm/exynos_drm.h> | ||
|
||
#include "exynos_drm_crtc.h" | ||
#include "exynos_drm_drv.h" | ||
#include "exynos_drm_fb.h" | ||
#include "exynos_drm_crtc.h" | ||
#include "exynos_drm_plane.h" | ||
|
||
/* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,21 +4,24 @@ | |
* Authors: Joonyoung Shim <[email protected]> | ||
*/ | ||
|
||
#include <linux/kernel.h> | ||
#include <linux/clk.h> | ||
#include <linux/component.h> | ||
#include <linux/delay.h> | ||
#include <linux/dma-mapping.h> | ||
#include <linux/err.h> | ||
#include <linux/interrupt.h> | ||
#include <linux/io.h> | ||
#include <linux/kernel.h> | ||
#include <linux/of.h> | ||
#include <linux/platform_device.h> | ||
#include <linux/pm_runtime.h> | ||
#include <linux/slab.h> | ||
#include <linux/uaccess.h> | ||
#include <linux/workqueue.h> | ||
#include <linux/dma-mapping.h> | ||
#include <linux/of.h> | ||
|
||
#include <drm/drmP.h> | ||
#include <drm/drm_file.h> | ||
#include <drm/exynos_drm.h> | ||
|
||
#include "exynos_drm_drv.h" | ||
#include "exynos_drm_g2d.h" | ||
#include "exynos_drm_gem.h" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,12 +5,13 @@ | |
* Author: Inki Dae <[email protected]> | ||
*/ | ||
|
||
#include <drm/drmP.h> | ||
#include <drm/drm_vma_manager.h> | ||
|
||
#include <linux/shmem_fs.h> | ||
#include <linux/dma-buf.h> | ||
#include <linux/pfn_t.h> | ||
#include <linux/shmem_fs.h> | ||
|
||
#include <drm/drm_prime.h> | ||
#include <drm/drm_vma_manager.h> | ||
#include <drm/exynos_drm.h> | ||
|
||
#include "exynos_drm_drv.h" | ||
|
Oops, something went wrong.