qemu-patch-raspberry4/target/hppa
Philippe Mathieu-Daudé bf85388169 qdev: use device_class_set_parent_realize/unrealize/reset()
changes generated using the following Coccinelle patch:

  @@
  type DeviceParentClass;
  DeviceParentClass *pc;
  DeviceClass *dc;
  identifier parent_fn;
  identifier child_fn;
  @@
  (
  +device_class_set_parent_realize(dc, child_fn, &pc->parent_fn);
  -pc->parent_fn = dc->realize;
  ...
  -dc->realize = child_fn;
  |
  +device_class_set_parent_unrealize(dc, child_fn, &pc->parent_fn);
  -pc->parent_fn = dc->unrealize;
  ...
  -dc->unrealize = child_fn;
  |
  +device_class_set_parent_reset(dc, child_fn, &pc->parent_fn);
  -pc->parent_fn = dc->reset;
  ...
  -dc->reset = child_fn;
  )

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20180114020412.26160-4-f4bug@amsat.org>
Reviewed-by: Marcel Apfelbaum <marcel@redhat.com>
Acked-by: David Gibson <david@gibson.dropbear.id.au>
Acked-by: Cornelia Huck <cohuck@redhat.com>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2018-02-05 13:54:38 +01:00
..
cpu-qom.h target-hppa: Add framework and enable compilation 2017-01-23 09:52:40 -08:00
cpu.c qdev: use device_class_set_parent_realize/unrealize/reset() 2018-02-05 13:54:38 +01:00
cpu.h target/hppa: Enable MTTCG 2018-01-31 05:30:50 -08:00
gdbstub.c target/hppa: Add system registers to gdbstub 2018-01-31 05:30:49 -08:00
helper.c target/hppa: Implement IASQ 2018-01-30 10:08:18 -08:00
helper.h target/hppa: Implement PROBE for system mode 2018-01-31 05:30:50 -08:00
int_helper.c target/hppa: Implement the interval timer 2018-01-30 10:22:26 -08:00
machine.c target/hppa: Add migration for the cpu 2018-01-31 05:30:49 -08:00
Makefile.objs target/hppa: Add migration for the cpu 2018-01-31 05:30:49 -08:00
mem_helper.c target/hppa: Only use EXCP_DTLB_MISS 2018-01-31 05:30:50 -08:00
op_helper.c target/hppa: Implement PROBE for system mode 2018-01-31 05:30:50 -08:00
translate.c target/hppa: Implement PROBE for system mode 2018-01-31 05:30:50 -08:00