summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorHollis Blanchard <hollisb@us.ibm.com>2004-02-29 22:07:43 -0800
committerGreg Kroah-Hartman <greg@kroah.com>2004-02-29 22:07:43 -0800
commit84c6b89af5436079f32fc69edd2876afda73eeb6 (patch)
treea911f02fa57b538ec68ee908c4b189a66b6d7e2a /include
parent53e66bd3d183319152b64b72dbbfe65df6ef041d (diff)
[PATCH] ppc64: make "viodev->unit_address" 32-bit
vio_dev->unit_address only holds 32 bits of information anyways, so no need for 64-bit field.
Diffstat (limited to 'include')
-rw-r--r--include/asm-ppc64/vio.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-ppc64/vio.h b/include/asm-ppc64/vio.h
index 1233151555d7..1eb2b916f320 100644
--- a/include/asm-ppc64/vio.h
+++ b/include/asm-ppc64/vio.h
@@ -94,8 +94,8 @@ static inline struct vio_driver *to_vio_driver(struct device_driver *drv)
struct vio_dev {
struct device_node *archdata; /* Open Firmware node */
void *driver_data; /* data private to the driver */
- unsigned long unit_address;
struct iommu_table *iommu_table; /* vio_map_* uses this */
+ uint32_t unit_address;
unsigned int irq;
struct device dev;