diff options
author | 2020-11-17 15:44:07 +0100 | |
---|---|---|
committer | 2020-12-01 17:43:46 +0100 | |
commit | 5cf82904264190cd6c0edf65ce144ebb2b8be7f4 (patch) | |
tree | f3baf93dff7e5d0dad168c525e0e4e7c6953297a /drivers/gpu/drm/ttm/ttm_bo.c | |
parent | video: fbdev: nvidia: Fix set but not used warnings (diff) | |
download | linux-dev-5cf82904264190cd6c0edf65ce144ebb2b8be7f4.tar.xz linux-dev-5cf82904264190cd6c0edf65ce144ebb2b8be7f4.zip |
drm/ttm/drivers: remove unecessary ttm_module.h include v2
ttm_module.h deals with internals of TTM and should never
be include outside of it.
v2: also move the file around
Signed-off-by: Christian König <christian.koenig@amd.com>
Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/404885/
Diffstat (limited to 'drivers/gpu/drm/ttm/ttm_bo.c')
-rw-r--r-- | drivers/gpu/drm/ttm/ttm_bo.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/ttm/ttm_bo.c b/drivers/gpu/drm/ttm/ttm_bo.c index fc6b619c0329..02cc5d247c0d 100644 --- a/drivers/gpu/drm/ttm/ttm_bo.c +++ b/drivers/gpu/drm/ttm/ttm_bo.c @@ -31,7 +31,6 @@ #define pr_fmt(fmt) "[TTM] " fmt -#include <drm/ttm/ttm_module.h> #include <drm/ttm/ttm_bo_driver.h> #include <drm/ttm/ttm_placement.h> #include <linux/jiffies.h> @@ -43,6 +42,8 @@ #include <linux/atomic.h> #include <linux/dma-resv.h> +#include "ttm_module.h" + static void ttm_bo_global_kobj_release(struct kobject *kobj); /* |