summaryrefslogtreecommitdiff
path: root/linux-core/xgi_cmdlist.h
diff options
context:
space:
mode:
authorIan Romanick <idr@us.ibm.com>2007-07-09 18:54:25 -0700
committerIan Romanick <idr@us.ibm.com>2007-07-09 18:54:25 -0700
commit76ca1e858fb8e1a65ea49c0c62350d7ca91044a2 (patch)
tree0786d8f0f6a611522f3e810417dd3f52b11e8ddf /linux-core/xgi_cmdlist.h
parenta9c49be6f8a0aa199a9dc0ffd0a9aa2b85cd796d (diff)
Convert occurances of U32 to other types.
Most occurances of U32 were converted to u32. These are cases where the data represents something that will be written to the hardware. Other cases were converted to 'unsigned int'. U32 was the last type in xgi_types.h, so that file is removed.
Diffstat (limited to 'linux-core/xgi_cmdlist.h')
-rw-r--r--linux-core/xgi_cmdlist.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/linux-core/xgi_cmdlist.h b/linux-core/xgi_cmdlist.h
index c6221511..d2b95c0e 100644
--- a/linux-core/xgi_cmdlist.h
+++ b/linux-core/xgi_cmdlist.h
@@ -58,11 +58,11 @@ typedef enum {
} CMD_SIZE;
struct xgi_cmdring_info {
- U32 _cmdRingSize;
- U32 _cmdRingBuffer;
- U32 _cmdRingBusAddr;
- U32 _lastBatchStartAddr;
- U32 _cmdRingOffset;
+ unsigned int _cmdRingSize;
+ u32 _cmdRingBuffer;
+ unsigned long _cmdRingBusAddr;
+ u32 _lastBatchStartAddr;
+ u32 _cmdRingOffset;
};
extern int xgi_cmdlist_initialize(struct xgi_info * info, size_t size);