summaryrefslogtreecommitdiff
path: root/xen/ring.h
diff options
context:
space:
mode:
Diffstat (limited to 'xen/ring.h')
-rw-r--r--xen/ring.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/ring.h b/xen/ring.h
index c5c2fe39..1ac8b37d 100644
--- a/xen/ring.h
+++ b/xen/ring.h
@@ -19,7 +19,7 @@
#ifndef XEN_RING_H
#define XEN_RING_H
-typedef unsigned32_t hyp_ring_pos_t;
+typedef uint32_t hyp_ring_pos_t;
#define hyp_ring_idx(ring, pos) (((unsigned)(pos)) & (sizeof(ring)-1))
#define hyp_ring_cell(ring, pos) (ring)[hyp_ring_idx((ring), (pos))]