Message ID | 1444888618-4506-11-git-send-email-mikko.rapeli@iki.fi (mailing list archive) |
---|---|
State | Accepted |
Headers | show |
On 15 October 2015 at 06:55, Mikko Rapeli <mikko.rapeli@iki.fi> wrote: > Fixes userspace compile error since list_head is not exported to userspace > headers. > > Suggested by Emil Velikov <emil.l.velikov@gmail.com> at > https://lkml.org/lkml/2015/6/3/792 > > Signed-off-by: Mikko Rapeli <mikko.rapeli@iki.fi> We're safe as the only users of the struct already include via_drv.h. Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com> Daniel can you pick this up (esp. since you added it with commit c828e20456301b0f5192a1f75e8bf8a6afd15551) Thanks Emil
On Wed, Oct 21, 2015 at 03:36:22PM +0100, Emil Velikov wrote: > On 15 October 2015 at 06:55, Mikko Rapeli <mikko.rapeli@iki.fi> wrote: > > Fixes userspace compile error since list_head is not exported to userspace > > headers. > > > > Suggested by Emil Velikov <emil.l.velikov@gmail.com> at > > https://lkml.org/lkml/2015/6/3/792 > > > > Signed-off-by: Mikko Rapeli <mikko.rapeli@iki.fi> > We're safe as the only users of the struct already include via_drv.h. > > Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com> > > Daniel can you pick this up (esp. since you added it with commit > c828e20456301b0f5192a1f75e8bf8a6afd15551) Dave already applied it. -Daniel > > Thanks > Emil
On 21 October 2015 at 16:33, Daniel Vetter <daniel@ffwll.ch> wrote: > On Wed, Oct 21, 2015 at 03:36:22PM +0100, Emil Velikov wrote: >> On 15 October 2015 at 06:55, Mikko Rapeli <mikko.rapeli@iki.fi> wrote: >> > Fixes userspace compile error since list_head is not exported to userspace >> > headers. >> > >> > Suggested by Emil Velikov <emil.l.velikov@gmail.com> at >> > https://lkml.org/lkml/2015/6/3/792 >> > >> > Signed-off-by: Mikko Rapeli <mikko.rapeli@iki.fi> >> We're safe as the only users of the struct already include via_drv.h. >> >> Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com> >> >> Daniel can you pick this up (esp. since you added it with commit >> c828e20456301b0f5192a1f75e8bf8a6afd15551) > > Dave already applied it. Did not notice. Sorry for the noise. -Emil
diff --git a/drivers/gpu/drm/via/via_drv.h b/drivers/gpu/drm/via/via_drv.h index ef8c500..875e65a 100644 --- a/drivers/gpu/drm/via/via_drv.h +++ b/drivers/gpu/drm/via/via_drv.h @@ -102,6 +102,10 @@ typedef struct drm_via_private { uint32_t dma_diff; } drm_via_private_t; +struct via_file_private { + struct list_head obj_list; +}; + enum via_family { VIA_OTHER = 0, /* Baseline */ VIA_PRO_GROUP_A, /* Another video engine and DMA commands */ diff --git a/include/uapi/drm/via_drm.h b/include/uapi/drm/via_drm.h index d19c0e2..c8c053a 100644 --- a/include/uapi/drm/via_drm.h +++ b/include/uapi/drm/via_drm.h @@ -271,8 +271,4 @@ typedef struct drm_via_dmablit { drm_via_blitsync_t sync; } drm_via_dmablit_t; -struct via_file_private { - struct list_head obj_list; -}; - #endif /* _VIA_DRM_H_ */
Fixes userspace compile error since list_head is not exported to userspace headers. Suggested by Emil Velikov <emil.l.velikov@gmail.com> at https://lkml.org/lkml/2015/6/3/792 Signed-off-by: Mikko Rapeli <mikko.rapeli@iki.fi> --- drivers/gpu/drm/via/via_drv.h | 4 ++++ include/uapi/drm/via_drm.h | 4 ---- 2 files changed, 4 insertions(+), 4 deletions(-)