[PATCH 3/7] drm/vgem: Use spinlock_t instead of struct spinlock
Sebastian Andrzej Siewior
bigeasy at linutronix.de
Thu Jul 4 15:37:59 UTC 2019
For spinlocks the type spinlock_t should be used instead of "struct
spinlock".
Use spinlock_t for spinlock's definition.
Cc: David Airlie <airlied at linux.ie>
Cc: Daniel Vetter <daniel at ffwll.ch>
Cc: dri-devel at lists.freedesktop.org
Signed-off-by: Sebastian Andrzej Siewior <bigeasy at linutronix.de>
---
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
More information about the dri-devel
mailing list