aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/ttm
diff options
context:
space:
mode:
authorDavid Howells <dhowells@redhat.com>2012-10-02 13:01:07 -0400
committerDavid Howells <dhowells@redhat.com>2012-10-02 13:01:07 -0400
commit760285e7e7ab282c25b5e90816f7c47000557f4f (patch)
treeb288dddd8ad2fdc51fa8b2022ea8db8603dd749c /drivers/gpu/drm/ttm
parent4126d5d61f8466be3f76c1bc4e16d46eb2c9641b (diff)
UAPI: (Scripted) Convert #include "..." to #include <path/...> in drivers/gpu/
Convert #include "..." to #include <path/...> in drivers/gpu/. Signed-off-by: David Howells <dhowells@redhat.com> Acked-by: Dave Airlie <airlied@redhat.com> Acked-by: Arnd Bergmann <arnd@arndb.de> Acked-by: Thomas Gleixner <tglx@linutronix.de> Acked-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com> Acked-by: Dave Jones <davej@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/ttm')
-rw-r--r--drivers/gpu/drm/ttm/ttm_agp_backend.c8
-rw-r--r--drivers/gpu/drm/ttm/ttm_bo.c6
-rw-r--r--drivers/gpu/drm/ttm/ttm_bo_manager.c8
-rw-r--r--drivers/gpu/drm/ttm/ttm_bo_util.c4
-rw-r--r--drivers/gpu/drm/ttm/ttm_execbuf_util.c6
-rw-r--r--drivers/gpu/drm/ttm/ttm_lock.c4
-rw-r--r--drivers/gpu/drm/ttm/ttm_memory.c6
-rw-r--r--drivers/gpu/drm/ttm/ttm_module.c4
-rw-r--r--drivers/gpu/drm/ttm/ttm_object.c4
-rw-r--r--drivers/gpu/drm/ttm/ttm_page_alloc.c4
-rw-r--r--drivers/gpu/drm/ttm/ttm_page_alloc_dma.c4
-rw-r--r--drivers/gpu/drm/ttm/ttm_tt.c12
12 files changed, 35 insertions, 35 deletions
diff --git a/drivers/gpu/drm/ttm/ttm_agp_backend.c b/drivers/gpu/drm/ttm/ttm_agp_backend.c
index 4a8728291361..3302f99e7497 100644
--- a/drivers/gpu/drm/ttm/ttm_agp_backend.c
+++ b/drivers/gpu/drm/ttm/ttm_agp_backend.c
@@ -31,11 +31,11 @@
31 31
32#define pr_fmt(fmt) "[TTM] " fmt 32#define pr_fmt(fmt) "[TTM] " fmt
33 33
34#include "ttm/ttm_module.h" 34#include <drm/ttm/ttm_module.h>
35#include "ttm/ttm_bo_driver.h" 35#include <drm/ttm/ttm_bo_driver.h>
36#include "ttm/ttm_page_alloc.h" 36#include <drm/ttm/ttm_page_alloc.h>
37#ifdef TTM_HAS_AGP 37#ifdef TTM_HAS_AGP
38#include "ttm/ttm_placement.h" 38#include <drm/ttm/ttm_placement.h>
39#include <linux/agp_backend.h> 39#include <linux/agp_backend.h>
40#include <linux/module.h> 40#include <linux/module.h>
41#include <linux/slab.h> 41#include <linux/slab.h>
diff --git a/drivers/gpu/drm/ttm/ttm_bo.c b/drivers/gpu/drm/ttm/ttm_bo.c
index 36f4b28c1b90..402ab69f9f99 100644
--- a/drivers/gpu/drm/ttm/ttm_bo.c
+++ b/drivers/gpu/drm/ttm/ttm_bo.c
@@ -30,9 +30,9 @@
30 30
31#define pr_fmt(fmt) "[TTM] " fmt 31#define pr_fmt(fmt) "[TTM] " fmt
32 32
33#include "ttm/ttm_module.h" 33#include <drm/ttm/ttm_module.h>
34#include "ttm/ttm_bo_driver.h" 34#include <drm/ttm/ttm_bo_driver.h>
35#include "ttm/ttm_placement.h" 35#include <drm/ttm/ttm_placement.h>
36#include <linux/jiffies.h> 36#include <linux/jiffies.h>
37#include <linux/slab.h> 37#include <linux/slab.h>
38#include <linux/sched.h> 38#include <linux/sched.h>
diff --git a/drivers/gpu/drm/ttm/ttm_bo_manager.c b/drivers/gpu/drm/ttm/ttm_bo_manager.c
index 038e947d00f9..9212494e9072 100644
--- a/drivers/gpu/drm/ttm/ttm_bo_manager.c
+++ b/drivers/gpu/drm/ttm/ttm_bo_manager.c
@@ -28,10 +28,10 @@
28 * Authors: Thomas Hellstrom <thellstrom-at-vmware-dot-com> 28 * Authors: Thomas Hellstrom <thellstrom-at-vmware-dot-com>
29 */ 29 */
30 30
31#include "ttm/ttm_module.h" 31#include <drm/ttm/ttm_module.h>
32#include "ttm/ttm_bo_driver.h" 32#include <drm/ttm/ttm_bo_driver.h>
33#include "ttm/ttm_placement.h" 33#include <drm/ttm/ttm_placement.h>
34#include "drm_mm.h" 34#include <drm/drm_mm.h>
35#include <linux/slab.h> 35#include <linux/slab.h>
36#include <linux/spinlock.h> 36#include <linux/spinlock.h>
37#include <linux/module.h> 37#include <linux/module.h>
diff --git a/drivers/gpu/drm/ttm/ttm_bo_util.c b/drivers/gpu/drm/ttm/ttm_bo_util.c
index f8187ead7b37..2a4aa57779e7 100644
--- a/drivers/gpu/drm/ttm/ttm_bo_util.c
+++ b/drivers/gpu/drm/ttm/ttm_bo_util.c
@@ -28,8 +28,8 @@
28 * Authors: Thomas Hellstrom <thellstrom-at-vmware-dot-com> 28 * Authors: Thomas Hellstrom <thellstrom-at-vmware-dot-com>
29 */ 29 */
30 30
31#include "ttm/ttm_bo_driver.h" 31#include <drm/ttm/ttm_bo_driver.h>
32#include "ttm/ttm_placement.h" 32#include <drm/ttm/ttm_placement.h>
33#include <linux/io.h> 33#include <linux/io.h>
34#include <linux/highmem.h> 34#include <linux/highmem.h>
35#include <linux/wait.h> 35#include <linux/wait.h>
diff --git a/drivers/gpu/drm/ttm/ttm_execbuf_util.c b/drivers/gpu/drm/ttm/ttm_execbuf_util.c
index 3832fe10b4df..1937069432c5 100644
--- a/drivers/gpu/drm/ttm/ttm_execbuf_util.c
+++ b/drivers/gpu/drm/ttm/ttm_execbuf_util.c
@@ -25,9 +25,9 @@
25 * 25 *
26 **************************************************************************/ 26 **************************************************************************/
27 27
28#include "ttm/ttm_execbuf_util.h" 28#include <drm/ttm/ttm_execbuf_util.h>
29#include "ttm/ttm_bo_driver.h" 29#include <drm/ttm/ttm_bo_driver.h>
30#include "ttm/ttm_placement.h" 30#include <drm/ttm/ttm_placement.h>
31#include <linux/wait.h> 31#include <linux/wait.h>
32#include <linux/sched.h> 32#include <linux/sched.h>
33#include <linux/module.h> 33#include <linux/module.h>
diff --git a/drivers/gpu/drm/ttm/ttm_lock.c b/drivers/gpu/drm/ttm/ttm_lock.c
index 075daf44bce4..3daa9a3930b8 100644
--- a/drivers/gpu/drm/ttm/ttm_lock.c
+++ b/drivers/gpu/drm/ttm/ttm_lock.c
@@ -28,8 +28,8 @@
28 * Authors: Thomas Hellstrom <thellstrom-at-vmware-dot-com> 28 * Authors: Thomas Hellstrom <thellstrom-at-vmware-dot-com>
29 */ 29 */
30 30
31#include "ttm/ttm_lock.h" 31#include <drm/ttm/ttm_lock.h>
32#include "ttm/ttm_module.h" 32#include <drm/ttm/ttm_module.h>
33#include <linux/atomic.h> 33#include <linux/atomic.h>
34#include <linux/errno.h> 34#include <linux/errno.h>
35#include <linux/wait.h> 35#include <linux/wait.h>
diff --git a/drivers/gpu/drm/ttm/ttm_memory.c b/drivers/gpu/drm/ttm/ttm_memory.c
index 23d2ecbaed59..479c6b0467ca 100644
--- a/drivers/gpu/drm/ttm/ttm_memory.c
+++ b/drivers/gpu/drm/ttm/ttm_memory.c
@@ -27,9 +27,9 @@
27 27
28#define pr_fmt(fmt) "[TTM] " fmt 28#define pr_fmt(fmt) "[TTM] " fmt
29 29
30#include "ttm/ttm_memory.h" 30#include <drm/ttm/ttm_memory.h>
31#include "ttm/ttm_module.h" 31#include <drm/ttm/ttm_module.h>
32#include "ttm/ttm_page_alloc.h" 32#include <drm/ttm/ttm_page_alloc.h>
33#include <linux/spinlock.h> 33#include <linux/spinlock.h>
34#include <linux/sched.h> 34#include <linux/sched.h>
35#include <linux/wait.h> 35#include <linux/wait.h>
diff --git a/drivers/gpu/drm/ttm/ttm_module.c b/drivers/gpu/drm/ttm/ttm_module.c
index 902d7cf9fb4e..d7f92fe9d904 100644
--- a/drivers/gpu/drm/ttm/ttm_module.c
+++ b/drivers/gpu/drm/ttm/ttm_module.c
@@ -31,8 +31,8 @@
31#include <linux/module.h> 31#include <linux/module.h>
32#include <linux/device.h> 32#include <linux/device.h>
33#include <linux/sched.h> 33#include <linux/sched.h>
34#include "ttm/ttm_module.h" 34#include <drm/ttm/ttm_module.h>
35#include "drm_sysfs.h" 35#include <drm/drm_sysfs.h>
36 36
37static DECLARE_WAIT_QUEUE_HEAD(exit_q); 37static DECLARE_WAIT_QUEUE_HEAD(exit_q);
38atomic_t device_released; 38atomic_t device_released;
diff --git a/drivers/gpu/drm/ttm/ttm_object.c b/drivers/gpu/drm/ttm/ttm_object.c
index 68daca412cbd..c7857874956a 100644
--- a/drivers/gpu/drm/ttm/ttm_object.c
+++ b/drivers/gpu/drm/ttm/ttm_object.c
@@ -51,8 +51,8 @@
51 51
52#define pr_fmt(fmt) "[TTM] " fmt 52#define pr_fmt(fmt) "[TTM] " fmt
53 53
54#include "ttm/ttm_object.h" 54#include <drm/ttm/ttm_object.h>
55#include "ttm/ttm_module.h" 55#include <drm/ttm/ttm_module.h>
56#include <linux/list.h> 56#include <linux/list.h>
57#include <linux/spinlock.h> 57#include <linux/spinlock.h>
58#include <linux/slab.h> 58#include <linux/slab.h>
diff --git a/drivers/gpu/drm/ttm/ttm_page_alloc.c b/drivers/gpu/drm/ttm/ttm_page_alloc.c
index ebc6fac96e36..860dc4813e99 100644
--- a/drivers/gpu/drm/ttm/ttm_page_alloc.c
+++ b/drivers/gpu/drm/ttm/ttm_page_alloc.c
@@ -45,8 +45,8 @@
45 45
46#include <linux/atomic.h> 46#include <linux/atomic.h>
47 47
48#include "ttm/ttm_bo_driver.h" 48#include <drm/ttm/ttm_bo_driver.h>
49#include "ttm/ttm_page_alloc.h" 49#include <drm/ttm/ttm_page_alloc.h>
50 50
51#ifdef TTM_HAS_AGP 51#ifdef TTM_HAS_AGP
52#include <asm/agp.h> 52#include <asm/agp.h>
diff --git a/drivers/gpu/drm/ttm/ttm_page_alloc_dma.c b/drivers/gpu/drm/ttm/ttm_page_alloc_dma.c
index 4f9e548b2eec..d4aa5a82ab1b 100644
--- a/drivers/gpu/drm/ttm/ttm_page_alloc_dma.c
+++ b/drivers/gpu/drm/ttm/ttm_page_alloc_dma.c
@@ -47,8 +47,8 @@
47#include <linux/atomic.h> 47#include <linux/atomic.h>
48#include <linux/device.h> 48#include <linux/device.h>
49#include <linux/kthread.h> 49#include <linux/kthread.h>
50#include "ttm/ttm_bo_driver.h" 50#include <drm/ttm/ttm_bo_driver.h>
51#include "ttm/ttm_page_alloc.h" 51#include <drm/ttm/ttm_page_alloc.h>
52#ifdef TTM_HAS_AGP 52#ifdef TTM_HAS_AGP
53#include <asm/agp.h> 53#include <asm/agp.h>
54#endif 54#endif
diff --git a/drivers/gpu/drm/ttm/ttm_tt.c b/drivers/gpu/drm/ttm/ttm_tt.c
index fa09daf9a50c..82a529e45afe 100644
--- a/drivers/gpu/drm/ttm/ttm_tt.c
+++ b/drivers/gpu/drm/ttm/ttm_tt.c
@@ -38,12 +38,12 @@
38#include <linux/swap.h> 38#include <linux/swap.h>
39#include <linux/slab.h> 39#include <linux/slab.h>
40#include <linux/export.h> 40#include <linux/export.h>
41#include "drm_cache.h" 41#include <drm/drm_cache.h>
42#include "drm_mem_util.h" 42#include <drm/drm_mem_util.h>
43#include "ttm/ttm_module.h" 43#include <drm/ttm/ttm_module.h>
44#include "ttm/ttm_bo_driver.h" 44#include <drm/ttm/ttm_bo_driver.h>
45#include "ttm/ttm_placement.h" 45#include <drm/ttm/ttm_placement.h>
46#include "ttm/ttm_page_alloc.h" 46#include <drm/ttm/ttm_page_alloc.h>
47 47
48/** 48/**
49 * Allocates storage for pointers to the pages that back the ttm. 49 * Allocates storage for pointers to the pages that back the ttm.