From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Deucher Subject: Re: linux-next: build failure after merge of the drm-misc tree Date: Wed, 16 Oct 2019 12:21:55 -0400 Message-ID: References: <20191016112207.1ade14af@canb.auug.org.au> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Return-path: In-Reply-To: <20191016112207.1ade14af@canb.auug.org.au> Sender: linux-kernel-owner@vger.kernel.org To: Stephen Rothwell Cc: Daniel Vetter , Intel Graphics , DRI , Linux Next Mailing List , Linux Kernel Mailing List , Huang Rui , Sam Ravnborg List-Id: dri-devel@lists.freedesktop.org Applied. Thanks! Alex On Tue, Oct 15, 2019 at 8:22 PM Stephen Rothwell wrote: > > Hi all, > > After merging the drm-misc tree, today's linux-next build (x86_64 > allmodconfig) failed like this: > > drivers/gpu/drm/amd/amdgpu/amdgpu_tmz.c:23:10: fatal error: drm/drmP.h: No such file or directory > 23 | #include > | ^~~~~~~~~~~~ > > Caused by commit > > 4e98f871bcff ("drm: delete drmP.h + drm_os_linux.h") > > interacting with commit > > 8b8c294c5d37 ("drm/amdgpu: add function to check tmz capability (v4)") > > from the amdgpu tree. > > I applied the following merge fix patch for today (which should also > apply to the amdgpu tree). > > From: Stephen Rothwell > Date: Wed, 16 Oct 2019 11:17:32 +1100 > Subject: [PATCH] drm/amdgpu: fix up for amdgpu_tmz.c and removal of drm/drmP.h > > Signed-off-by: Stephen Rothwell > --- > drivers/gpu/drm/amd/amdgpu/amdgpu_tmz.c | 5 ++++- > 1 file changed, 4 insertions(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_tmz.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_tmz.c > index 14a55003dd81..823527a0fa47 100644 > --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_tmz.c > +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_tmz.c > @@ -20,7 +20,10 @@ > * OTHER DEALINGS IN THE SOFTWARE. > */ > > -#include > +#include > + > +#include > + > #include "amdgpu.h" > #include "amdgpu_tmz.h" > > -- > 2.23.0 > > -- > Cheers, > Stephen Rothwell