mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 01:03:55 -06:00
Fix incorrect target_ulong use in hw devices
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2962 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
740733bb93
commit
71db710f7e
9 changed files with 49 additions and 42 deletions
|
@ -86,7 +86,7 @@ struct SerialState {
|
|||
qemu_irq irq;
|
||||
CharDriverState *chr;
|
||||
int last_break_enable;
|
||||
target_ulong base;
|
||||
target_phys_addr_t base;
|
||||
int it_shift;
|
||||
};
|
||||
|
||||
|
@ -437,7 +437,7 @@ static CPUWriteMemoryFunc *serial_mm_write[] = {
|
|||
&serial_mm_writel,
|
||||
};
|
||||
|
||||
SerialState *serial_mm_init (target_ulong base, int it_shift,
|
||||
SerialState *serial_mm_init (target_phys_addr_t base, int it_shift,
|
||||
qemu_irq irq, CharDriverState *chr,
|
||||
int ioregister)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue