提交 04843626 编写于 作者: B Blue Swirl

Sparc32/64: use 64 bit type for memory size

Signed-off-by: NBlue Swirl <blauwirbel@gmail.com>
上级 5a053d1f
......@@ -480,7 +480,7 @@ device_init(prom_register_devices);
typedef struct RamDevice
{
SysBusDevice busdev;
uint32_t size;
uint64_t size;
} RamDevice;
/* System RAM */
......@@ -527,7 +527,7 @@ static SysBusDeviceInfo ram_info = {
.qdev.props = (Property[]) {
{
.name = "size",
.info = &qdev_prop_uint32,
.info = &qdev_prop_uint64,
.offset = offsetof(RamDevice, size),
},
{/* end of property list */}
......
......@@ -455,7 +455,7 @@ device_init(prom_register_devices);
typedef struct RamDevice
{
SysBusDevice busdev;
uint32_t size; // XXX
uint64_t size;
} RamDevice;
/* System RAM */
......@@ -494,7 +494,7 @@ static SysBusDeviceInfo ram_info = {
.qdev.props = (Property[]) {
{
.name = "size",
.info = &qdev_prop_uint32,
.info = &qdev_prop_uint64,
.offset = offsetof(RamDevice, size),
},
{/* end of property list */}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册