For spinlocks the type spinlock_t should be used instead of "struct spinlock".
Use spinlock_t for spinlock's definition. Cc: David Airlie <[email protected]> Cc: Daniel Vetter <[email protected]> Cc: [email protected] Signed-off-by: Sebastian Andrzej Siewior <[email protected]> --- drivers/gpu/drm/vgem/vgem_fence.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/vgem/vgem_fence.c b/drivers/gpu/drm/vgem/vgem_fence.c index eb17c0cd3727a..4b0b7d61bac96 100644 --- a/drivers/gpu/drm/vgem/vgem_fence.c +++ b/drivers/gpu/drm/vgem/vgem_fence.c @@ -29,7 +29,7 @@ struct vgem_fence { struct dma_fence base; - struct spinlock lock; + spinlock_t lock; struct timer_list timer; }; -- 2.20.1
