diff options
author | David Howells <dhowells@redhat.com> | 2012-10-02 13:01:07 -0400 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2012-10-02 13:01:07 -0400 |
commit | 760285e7e7ab282c25b5e90816f7c47000557f4f (patch) | |
tree | b288dddd8ad2fdc51fa8b2022ea8db8603dd749c /drivers/gpu/drm/ast | |
parent | 4126d5d61f8466be3f76c1bc4e16d46eb2c9641b (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/ast')
-rw-r--r-- | drivers/gpu/drm/ast/ast_drv.c | 4 | ||||
-rw-r--r-- | drivers/gpu/drm/ast/ast_drv.h | 12 | ||||
-rw-r--r-- | drivers/gpu/drm/ast/ast_fb.c | 6 | ||||
-rw-r--r-- | drivers/gpu/drm/ast/ast_main.c | 6 | ||||
-rw-r--r-- | drivers/gpu/drm/ast/ast_mode.c | 6 | ||||
-rw-r--r-- | drivers/gpu/drm/ast/ast_post.c | 2 | ||||
-rw-r--r-- | drivers/gpu/drm/ast/ast_ttm.c | 2 |
7 files changed, 19 insertions, 19 deletions
diff --git a/drivers/gpu/drm/ast/ast_drv.c b/drivers/gpu/drm/ast/ast_drv.c index d5749b86caec..31123b6a0be5 100644 --- a/drivers/gpu/drm/ast/ast_drv.c +++ b/drivers/gpu/drm/ast/ast_drv.c | |||
@@ -28,8 +28,8 @@ | |||
28 | #include <linux/module.h> | 28 | #include <linux/module.h> |
29 | #include <linux/console.h> | 29 | #include <linux/console.h> |
30 | 30 | ||
31 | #include "drmP.h" | 31 | #include <drm/drmP.h> |
32 | #include "drm_crtc_helper.h" | 32 | #include <drm/drm_crtc_helper.h> |
33 | 33 | ||
34 | #include "ast_drv.h" | 34 | #include "ast_drv.h" |
35 | 35 | ||
diff --git a/drivers/gpu/drm/ast/ast_drv.h b/drivers/gpu/drm/ast/ast_drv.h index d4af9edcbb97..aea439760b60 100644 --- a/drivers/gpu/drm/ast/ast_drv.h +++ b/drivers/gpu/drm/ast/ast_drv.h | |||
@@ -28,13 +28,13 @@ | |||
28 | #ifndef __AST_DRV_H__ | 28 | #ifndef __AST_DRV_H__ |
29 | #define __AST_DRV_H__ | 29 | #define __AST_DRV_H__ |
30 | 30 | ||
31 | #include "drm_fb_helper.h" | 31 | #include <drm/drm_fb_helper.h> |
32 | 32 | ||
33 | #include "ttm/ttm_bo_api.h" | 33 | #include <drm/ttm/ttm_bo_api.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 "ttm/ttm_memory.h" | 36 | #include <drm/ttm/ttm_memory.h> |
37 | #include "ttm/ttm_module.h" | 37 | #include <drm/ttm/ttm_module.h> |
38 | 38 | ||
39 | #include <linux/i2c.h> | 39 | #include <linux/i2c.h> |
40 | #include <linux/i2c-algo-bit.h> | 40 | #include <linux/i2c-algo-bit.h> |
diff --git a/drivers/gpu/drm/ast/ast_fb.c b/drivers/gpu/drm/ast/ast_fb.c index d0d279233101..d9ec77959dff 100644 --- a/drivers/gpu/drm/ast/ast_fb.c +++ b/drivers/gpu/drm/ast/ast_fb.c | |||
@@ -37,9 +37,9 @@ | |||
37 | #include <linux/init.h> | 37 | #include <linux/init.h> |
38 | 38 | ||
39 | 39 | ||
40 | #include "drmP.h" | 40 | #include <drm/drmP.h> |
41 | #include "drm_crtc.h" | 41 | #include <drm/drm_crtc.h> |
42 | #include "drm_fb_helper.h" | 42 | #include <drm/drm_fb_helper.h> |
43 | #include "ast_drv.h" | 43 | #include "ast_drv.h" |
44 | 44 | ||
45 | static void ast_dirty_update(struct ast_fbdev *afbdev, | 45 | static void ast_dirty_update(struct ast_fbdev *afbdev, |
diff --git a/drivers/gpu/drm/ast/ast_main.c b/drivers/gpu/drm/ast/ast_main.c index 95ae55b8214b..f668e6cc0f7a 100644 --- a/drivers/gpu/drm/ast/ast_main.c +++ b/drivers/gpu/drm/ast/ast_main.c | |||
@@ -25,12 +25,12 @@ | |||
25 | /* | 25 | /* |
26 | * Authors: Dave Airlie <airlied@redhat.com> | 26 | * Authors: Dave Airlie <airlied@redhat.com> |
27 | */ | 27 | */ |
28 | #include "drmP.h" | 28 | #include <drm/drmP.h> |
29 | #include "ast_drv.h" | 29 | #include "ast_drv.h" |
30 | 30 | ||
31 | 31 | ||
32 | #include "drm_fb_helper.h" | 32 | #include <drm/drm_fb_helper.h> |
33 | #include "drm_crtc_helper.h" | 33 | #include <drm/drm_crtc_helper.h> |
34 | 34 | ||
35 | #include "ast_dram_tables.h" | 35 | #include "ast_dram_tables.h" |
36 | 36 | ||
diff --git a/drivers/gpu/drm/ast/ast_mode.c b/drivers/gpu/drm/ast/ast_mode.c index a712cafcfa1d..a6982b86df9b 100644 --- a/drivers/gpu/drm/ast/ast_mode.c +++ b/drivers/gpu/drm/ast/ast_mode.c | |||
@@ -28,9 +28,9 @@ | |||
28 | * Authors: Dave Airlie <airlied@redhat.com> | 28 | * Authors: Dave Airlie <airlied@redhat.com> |
29 | */ | 29 | */ |
30 | #include <linux/export.h> | 30 | #include <linux/export.h> |
31 | #include "drmP.h" | 31 | #include <drm/drmP.h> |
32 | #include "drm_crtc.h" | 32 | #include <drm/drm_crtc.h> |
33 | #include "drm_crtc_helper.h" | 33 | #include <drm/drm_crtc_helper.h> |
34 | #include "ast_drv.h" | 34 | #include "ast_drv.h" |
35 | 35 | ||
36 | #include "ast_tables.h" | 36 | #include "ast_tables.h" |
diff --git a/drivers/gpu/drm/ast/ast_post.c b/drivers/gpu/drm/ast/ast_post.c index 6edbee63b0cb..977cfb35837a 100644 --- a/drivers/gpu/drm/ast/ast_post.c +++ b/drivers/gpu/drm/ast/ast_post.c | |||
@@ -26,7 +26,7 @@ | |||
26 | * Authors: Dave Airlie <airlied@redhat.com> | 26 | * Authors: Dave Airlie <airlied@redhat.com> |
27 | */ | 27 | */ |
28 | 28 | ||
29 | #include "drmP.h" | 29 | #include <drm/drmP.h> |
30 | #include "ast_drv.h" | 30 | #include "ast_drv.h" |
31 | 31 | ||
32 | #include "ast_dram_tables.h" | 32 | #include "ast_dram_tables.h" |
diff --git a/drivers/gpu/drm/ast/ast_ttm.c b/drivers/gpu/drm/ast/ast_ttm.c index 6cf2adea66bc..1a026ac2dfb4 100644 --- a/drivers/gpu/drm/ast/ast_ttm.c +++ b/drivers/gpu/drm/ast/ast_ttm.c | |||
@@ -25,7 +25,7 @@ | |||
25 | /* | 25 | /* |
26 | * Authors: Dave Airlie <airlied@redhat.com> | 26 | * Authors: Dave Airlie <airlied@redhat.com> |
27 | */ | 27 | */ |
28 | #include "drmP.h" | 28 | #include <drm/drmP.h> |
29 | #include "ast_drv.h" | 29 | #include "ast_drv.h" |
30 | #include <ttm/ttm_page_alloc.h> | 30 | #include <ttm/ttm_page_alloc.h> |
31 | 31 | ||