]> Pileus Git - ~andy/linux/blobdiff - drivers/staging/hv/RingBuffer.h
Staging: hv: remove UINT8 and INT8 typedefs
[~andy/linux] / drivers / staging / hv / RingBuffer.h
index f62f3d77c0de11e6924dbc41082a706c59d096db..a190b3a6d30194063d5f0402ff0a20fa34d190f6 100644 (file)
@@ -37,12 +37,12 @@ typedef struct _RING_BUFFER {
     volatile UINT32    ReadIndex;      // Offset in bytes from the start of ring data below
 
        volatile UINT32 InterruptMask;
-       UINT8   Reserved[4084];                 // Pad it to PAGE_SIZE so that data starts on page boundary
+       u8      Reserved[4084];                 // Pad it to PAGE_SIZE so that data starts on page boundary
        // NOTE: The InterruptMask field is used only for channels but since our vmbus connection
        // also uses this data structure and its data starts here, we commented out this field.
        // volatile UINT32 InterruptMask;
        // Ring data starts here + RingDataStartOffset !!! DO NOT place any fields below this !!!
-    UINT8              Buffer[0];
+    u8         Buffer[0];
 } STRUCT_PACKED RING_BUFFER;
 
 typedef struct _RING_BUFFER_INFO {