xilinx_timer: Fixed "frequency" prop name
The "frequency" qdev prop matches the "clock-frequency" property in Xilinx EDK. Renamed "frequency" -> "clock-frequency" accordingly. Signed-off-by: Peter A. G. Crosthwaite <peter.crosthwaite@petalogix.com>
This commit is contained in:
parent
e03377ae75
commit
919f89f44c
@ -23,7 +23,7 @@ xilinx_timer_create(target_phys_addr_t base, qemu_irq irq, int oto, int freq)
|
||||
|
||||
dev = qdev_create(NULL, "xlnx.xps-timer");
|
||||
qdev_prop_set_uint32(dev, "one-timer-only", oto);
|
||||
qdev_prop_set_uint32(dev, "frequency", freq);
|
||||
qdev_prop_set_uint32(dev, "clock-frequency", freq);
|
||||
qdev_init_nofail(dev);
|
||||
sysbus_mmio_map(sysbus_from_qdev(dev), 0, base);
|
||||
sysbus_connect_irq(sysbus_from_qdev(dev), 0, irq);
|
||||
|
@ -224,7 +224,8 @@ static int xilinx_timer_init(SysBusDevice *dev)
|
||||
}
|
||||
|
||||
static Property xilinx_timer_properties[] = {
|
||||
DEFINE_PROP_UINT32("frequency", struct timerblock, freq_hz, 62 * 1000000),
|
||||
DEFINE_PROP_UINT32("clock-frequency", struct timerblock, freq_hz,
|
||||
62 * 1000000),
|
||||
DEFINE_PROP_UINT8("one-timer-only", struct timerblock, one_timer_only, 0),
|
||||
DEFINE_PROP_END_OF_LIST(),
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user