aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/hwqueue/hwqueue_internal.h')
-rw-r--r--drivers/hwqueue/hwqueue_internal.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/hwqueue/hwqueue_internal.h b/drivers/hwqueue/hwqueue_internal.h
index ce99b54495e..35d4f46d493 100644
--- a/drivers/hwqueue/hwqueue_internal.h
+++ b/drivers/hwqueue/hwqueue_internal.h
@@ -27,12 +27,13 @@
27struct hwqueue_instance { 27struct hwqueue_instance {
28 struct list_head handles; 28 struct list_head handles;
29 struct hwqueue_device *hdev; 29 struct hwqueue_device *hdev;
30 spinlock_t lock;
30 struct timer_list poll_timer; 31 struct timer_list poll_timer;
31 wait_queue_head_t wait; 32 wait_queue_head_t wait;
32 void *priv; 33 void *priv;
33 char name[32];
34 atomic_t num_notifiers; 34 atomic_t num_notifiers;
35 struct hwqueue_inst_ops *ops; 35 struct hwqueue_inst_ops *ops;
36 char name[32];
36}; 37};
37 38
38struct hwqueue_device_ops { 39struct hwqueue_device_ops {