* [PATCH] drm/amdkfd: add missing include of mm.h
@ 2018-03-15 8:10 Oded Gabbay
2018-03-15 8:10 ` Oded Gabbay
2018-03-15 12:48 ` Alex Deucher
0 siblings, 2 replies; 3+ messages in thread
From: Oded Gabbay @ 2018-03-15 8:10 UTC (permalink / raw)
To: dri-devel, airlied
This patch fixes kernel build in ARCH=frv
Signed-off-by: Oded Gabbay <oded.gabbay@gmail.com>
---
drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h b/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
index d7509b706b26..ad7292fc454c 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
@@ -26,6 +26,7 @@
#define AMDGPU_AMDKFD_H_INCLUDED
#include <linux/types.h>
+#include <linux/mm.h>
#include <linux/mmu_context.h>
#include <kgd_kfd_interface.h>
#include <drm/ttm/ttm_execbuf_util.h>
--
2.14.3
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] drm/amdkfd: add missing include of mm.h
2018-03-15 8:10 [PATCH] drm/amdkfd: add missing include of mm.h Oded Gabbay
@ 2018-03-15 8:10 ` Oded Gabbay
2018-03-15 12:48 ` Alex Deucher
1 sibling, 0 replies; 3+ messages in thread
From: Oded Gabbay @ 2018-03-15 8:10 UTC (permalink / raw)
To: Maling list - DRI developers, Dave Airlie
Hi Dave,
Could you please apply this directly to drm-next ?
I don't have any pending pull requests at the moment and it seems
redundant to send one for just a single patch.
Thanks,
Oded
On Thu, Mar 15, 2018 at 10:10 AM, Oded Gabbay <oded.gabbay@gmail.com> wrote:
> This patch fixes kernel build in ARCH=frv
>
> Signed-off-by: Oded Gabbay <oded.gabbay@gmail.com>
> ---
> drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h b/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
> index d7509b706b26..ad7292fc454c 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
> @@ -26,6 +26,7 @@
> #define AMDGPU_AMDKFD_H_INCLUDED
>
> #include <linux/types.h>
> +#include <linux/mm.h>
> #include <linux/mmu_context.h>
> #include <kgd_kfd_interface.h>
> #include <drm/ttm/ttm_execbuf_util.h>
> --
> 2.14.3
>
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] drm/amdkfd: add missing include of mm.h
2018-03-15 8:10 [PATCH] drm/amdkfd: add missing include of mm.h Oded Gabbay
2018-03-15 8:10 ` Oded Gabbay
@ 2018-03-15 12:48 ` Alex Deucher
1 sibling, 0 replies; 3+ messages in thread
From: Alex Deucher @ 2018-03-15 12:48 UTC (permalink / raw)
To: Oded Gabbay; +Cc: Maling list - DRI developers
On Thu, Mar 15, 2018 at 4:10 AM, Oded Gabbay <oded.gabbay@gmail.com> wrote:
> This patch fixes kernel build in ARCH=frv
>
> Signed-off-by: Oded Gabbay <oded.gabbay@gmail.com>
Acked-by: Alex Deucher <alexander.deucher@amd.com>
> ---
> drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h b/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
> index d7509b706b26..ad7292fc454c 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
> @@ -26,6 +26,7 @@
> #define AMDGPU_AMDKFD_H_INCLUDED
>
> #include <linux/types.h>
> +#include <linux/mm.h>
> #include <linux/mmu_context.h>
> #include <kgd_kfd_interface.h>
> #include <drm/ttm/ttm_execbuf_util.h>
> --
> 2.14.3
>
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/dri-devel
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2018-03-15 12:48 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-03-15 8:10 [PATCH] drm/amdkfd: add missing include of mm.h Oded Gabbay
2018-03-15 8:10 ` Oded Gabbay
2018-03-15 12:48 ` Alex Deucher
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.