Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1594668
| From | Laura Abbott <labbott@redhat.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCHv3 07/16] drm: Use set_memory.h header |
| Date | 2017-03-07 22:30 +0100 |
| Message-ID | <tiuQa-52G-37@gated-at.bofh.it> (permalink) |
| References | <tiun8-4vP-7@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
set_memory_* functions have moved to set_memory.h. Switch to this explicitly. Signed-off-by: Laura Abbott <labbott@redhat.com> --- v3: Add some #ifdef CONFIG_X86 --- drivers/gpu/drm/amd/amdgpu/amdgpu_gart.c | 3 +++ drivers/gpu/drm/gma500/gtt.c | 1 + drivers/gpu/drm/gma500/psb_drv.c | 1 + drivers/gpu/drm/radeon/radeon_gart.c | 3 +++ drivers/gpu/drm/ttm/ttm_page_alloc.c | 3 +++ drivers/gpu/drm/ttm/ttm_page_alloc_dma.c | 3 +++ drivers/gpu/drm/ttm/ttm_tt.c | 3 +++ 7 files changed, 17 insertions(+) diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_gart.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_gart.c index 964d2a94..b135521 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_gart.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_gart.c @@ -27,6 +27,9 @@ */ #include <drm/drmP.h> #include <drm/amdgpu_drm.h> +#ifdef CONFIG_X86 +#include <asm/set_memory.h> +#endif #include "amdgpu.h" /* diff --git a/drivers/gpu/drm/gma500/gtt.c b/drivers/gpu/drm/gma500/gtt.c index 3f4f424..3949b09 100644 --- a/drivers/gpu/drm/gma500/gtt.c +++ b/drivers/gpu/drm/gma500/gtt.c @@ -21,6 +21,7 @@ #include <drm/drmP.h> #include <linux/shmem_fs.h> +#include <asm/set_memory.h> #include "psb_drv.h" #include "blitter.h" diff --git a/drivers/gpu/drm/gma500/psb_drv.c b/drivers/gpu/drm/gma500/psb_drv.c index 5ee93ff..1f9b35a 100644 --- a/drivers/gpu/drm/gma500/psb_drv.c +++ b/drivers/gpu/drm/gma500/psb_drv.c @@ -35,6 +35,7 @@ #include <linux/pm_runtime.h> #include <acpi/video.h> #include <linux/module.h> +#include <asm/set_memory.h> static struct drm_driver driver; static int psb_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent); diff --git a/drivers/gpu/drm/radeon/radeon_gart.c b/drivers/gpu/drm/radeon/radeon_gart.c index c4777c8..0b3ec35 100644 --- a/drivers/gpu/drm/radeon/radeon_gart.c +++ b/drivers/gpu/drm/radeon/radeon_gart.c @@ -27,6 +27,9 @@ */ #include <drm/drmP.h> #include <drm/radeon_drm.h> +#ifdef CONFIG_X86 +#include <asm/set_memory.h> +#endif #include "radeon.h" /* diff --git a/drivers/gpu/drm/ttm/ttm_page_alloc.c b/drivers/gpu/drm/ttm/ttm_page_alloc.c index a37de5d..eeddc1e 100644 --- a/drivers/gpu/drm/ttm/ttm_page_alloc.c +++ b/drivers/gpu/drm/ttm/ttm_page_alloc.c @@ -51,6 +51,9 @@ #if IS_ENABLED(CONFIG_AGP) #include <asm/agp.h> #endif +#ifdef CONFIG_X86 +#include <asm/set_memory.h> +#endif #define NUM_PAGES_TO_ALLOC (PAGE_SIZE/sizeof(struct page *)) #define SMALL_ALLOCATION 16 diff --git a/drivers/gpu/drm/ttm/ttm_page_alloc_dma.c b/drivers/gpu/drm/ttm/ttm_page_alloc_dma.c index cec4b4b..90ddbdc 100644 --- a/drivers/gpu/drm/ttm/ttm_page_alloc_dma.c +++ b/drivers/gpu/drm/ttm/ttm_page_alloc_dma.c @@ -53,6 +53,9 @@ #if IS_ENABLED(CONFIG_AGP) #include <asm/agp.h> #endif +#ifdef CONFIG_X86 +#include <asm/set_memory.h> +#endif #define NUM_PAGES_TO_ALLOC (PAGE_SIZE/sizeof(struct page *)) #define SMALL_ALLOCATION 4 diff --git a/drivers/gpu/drm/ttm/ttm_tt.c b/drivers/gpu/drm/ttm/ttm_tt.c index aee3c00..5260179 100644 --- a/drivers/gpu/drm/ttm/ttm_tt.c +++ b/drivers/gpu/drm/ttm/ttm_tt.c @@ -44,6 +44,9 @@ #include <drm/ttm/ttm_bo_driver.h> #include <drm/ttm/ttm_placement.h> #include <drm/ttm/ttm_page_alloc.h> +#ifdef CONFIG_X86 +#include <asm/set_memory.h> +#endif /** * Allocates storage for pointers to the pages that back the ttm. -- 2.7.4
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCHv3 00/16] set_memory_* functions header refactor Laura Abbott <labbott@redhat.com> - 2017-03-07 22:30 +0100 [PATCHv3 07/16] drm: Use set_memory.h header Laura Abbott <labbott@redhat.com> - 2017-03-07 22:30 +0100 [PATCHv3 05/16] x86: Use set_memory.h header Laura Abbott <labbott@redhat.com> - 2017-03-07 22:30 +0100 [PATCHv3 08/16] intel_th: Use set_memory.h header Laura Abbott <labbott@redhat.com> - 2017-03-07 23:00 +0100 [PATCHv3 13/16] ALSA: Use set_memory.h header Laura Abbott <labbott@redhat.com> - 2017-03-07 23:00 +0100 [PATCHv3 10/16] bpf: Use set_memory.h header Laura Abbott <labbott@redhat.com> - 2017-03-07 23:00 +0100 [PATCHv3 03/16] arm64: Use set_memory.h header Laura Abbott <labbott@redhat.com> - 2017-03-07 23:10 +0100 [PATCHv3 04/16] s390: Use set_memory.h header Laura Abbott <labbott@redhat.com> - 2017-03-07 23:40 +0100 [PATCHv3 02/16] arm: Use set_memory.h header Laura Abbott <labbott@redhat.com> - 2017-03-08 00:00 +0100 [PATCHv3 09/16] watchdog: hpwdt: Use set_memory.h header Laura Abbott <labbott@redhat.com> - 2017-03-08 00:00 +0100 [PATCHv3 06/16] agp: Use set_memory.h header Laura Abbott <labbott@redhat.com> - 2017-03-08 00:50 +0100 [PATCHv3 12/16] PM / hibernate: Use set_memory.h header Laura Abbott <labbott@redhat.com> - 2017-03-08 01:00 +0100 [PATCHv3 14/16] misc: sram: Use set_memory.h header Laura Abbott <labbott@redhat.com> - 2017-03-08 01:20 +0100 [PATCHv3 01/16] treewide: Move set_memory_* functions away from cacheflush.h Laura Abbott <labbott@redhat.com> - 2017-03-08 02:10 +0100 [PATCHv3 11/16] module: Use set_memory.h header Laura Abbott <labbott@redhat.com> - 2017-03-08 05:40 +0100
csiph-web