diff options
author | Jan Kiszka <jan.kiszka@siemens.com> | 2009-05-02 00:29:37 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-05-22 10:50:34 -0500 |
commit | 8217606e6edb49591b4a6fd5a0d1229cebe470a9 (patch) | |
tree | fff3d6f590833c0f894a6c7c300ab126b5259d95 /hw/tsc2005.c | |
parent | 93102fd6010c68320bc9a008c8cf70cb4a36d4b9 (diff) |
Introduce reset notifier order
Add the parameter 'order' to qemu_register_reset and sort callbacks on
registration. On system reset, callbacks with lower order will be
invoked before those with higher order. Update all existing users to the
standard order 0.
Note: At least for x86, the existing users seem to assume that handlers
are called in their registration order. Therefore, the patch preserves
this property. If someone feels bored, (s)he could try to identify this
dependency and express it properly on callback registration.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/tsc2005.c')
-rw-r--r-- | hw/tsc2005.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/tsc2005.c b/hw/tsc2005.c index 2e71b8e794..36d6b53af8 100644 --- a/hw/tsc2005.c +++ b/hw/tsc2005.c @@ -548,7 +548,7 @@ void *tsc2005_init(qemu_irq pintdav) qemu_add_mouse_event_handler(tsc2005_touchscreen_event, s, 1, "QEMU TSC2005-driven Touchscreen"); - qemu_register_reset((void *) tsc2005_reset, s); + qemu_register_reset((void *) tsc2005_reset, 0, s); register_savevm("tsc2005", -1, 0, tsc2005_save, tsc2005_load, s); return s; |