aboutsummaryrefslogtreecommitdiff
path: root/drivers/staging/hv/include/List.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/staging/hv/include/List.h')
-rw-r--r--drivers/staging/hv/include/List.h13
1 files changed, 4 insertions, 9 deletions
diff --git a/drivers/staging/hv/include/List.h b/drivers/staging/hv/include/List.h
index 3895c328ddd..735a938a218 100644
--- a/drivers/staging/hv/include/List.h
+++ b/drivers/staging/hv/include/List.h
@@ -32,15 +32,10 @@
*
*/
-typedef DLIST_ENTRY LIST_ENTRY;
-typedef DLIST_ENTRY *PLIST_ENTRY;
-
-/* typedef struct LIST_ENTRY { */
-/* struct LIST_ENTRY * volatile Flink; */
-/* struct LIST_ENTRY * volatile Blink; */
-/* } LIST_ENTRY, *PLIST_ENTRY; */
-
-
+typedef struct _LIST_ENTRY {
+ struct _LIST_ENTRY *Flink;
+ struct _LIST_ENTRY *Blink;
+} LIST_ENTRY, *PLIST_ENTRY;
/*
* void