qemu-e2k/target/microblaze
Eduardo Habkost 30b5707c26 qom: Remove module_obj_name parameter from OBJECT_DECLARE* macros
One of the goals of having less boilerplate on QOM declarations
is to avoid human error.  Requiring an extra argument that is
never used is an opportunity for mistakes.

Remove the unused argument from OBJECT_DECLARE_TYPE and
OBJECT_DECLARE_SIMPLE_TYPE.

Coccinelle patch used to convert all users of the macros:

  @@
  declarer name OBJECT_DECLARE_TYPE;
  identifier InstanceType, ClassType, lowercase, UPPERCASE;
  @@
   OBJECT_DECLARE_TYPE(InstanceType, ClassType,
  -                    lowercase,
                       UPPERCASE);

  @@
  declarer name OBJECT_DECLARE_SIMPLE_TYPE;
  identifier InstanceType, lowercase, UPPERCASE;
  @@
   OBJECT_DECLARE_SIMPLE_TYPE(InstanceType,
  -                    lowercase,
                       UPPERCASE);

Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Reviewed-by: Cédric Le Goater <clg@kaod.org>
Acked-by: Cornelia Huck <cohuck@redhat.com>
Acked-by: Igor Mammedov <imammedo@redhat.com>
Acked-by: Paul Durrant <paul@xen.org>
Acked-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20200916182519.415636-4-ehabkost@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
2020-09-18 14:12:32 -04:00
..
cpu-param.h target/microblaze: Reduce linux-user address space to 32-bit 2020-09-01 07:43:35 -07:00
cpu-qom.h qom: Remove module_obj_name parameter from OBJECT_DECLARE* macros 2020-09-18 14:12:32 -04:00
cpu.c target/microblaze: Fill in VMStateDescription for cpu 2020-09-07 12:58:08 -07:00
cpu.h target/microblaze: Fill in VMStateDescription for cpu 2020-09-07 12:58:08 -07:00
gdbstub.c target/microblaze: Treat pvr_regs as constant 2020-09-07 12:58:08 -07:00
helper.c target/microblaze: Move mmu parameters to MicroBlazeCPUConfig 2020-09-07 12:58:08 -07:00
helper.h target/microblaze: Add flags markup to some helpers 2020-09-01 07:43:35 -07:00
insns.decode target/microblaze: Convert dec_stream to decodetree 2020-09-01 07:43:35 -07:00
machine.c target/microblaze: Fill in VMStateDescription for cpu 2020-09-07 12:58:08 -07:00
meson.build target/microblaze: Fill in VMStateDescription for cpu 2020-09-07 12:58:08 -07:00
mmu.c target/microblaze: Move mmu parameters to MicroBlazeCPUConfig 2020-09-07 12:58:08 -07:00
mmu.h target/microblaze: Move mmu parameters to MicroBlazeCPUConfig 2020-09-07 12:58:08 -07:00
op_helper.c target/microblaze: Move pvr regs to MicroBlazeCPUConfig 2020-09-07 12:58:08 -07:00
translate.c target/microblaze: Put MicroBlazeCPUConfig into DisasContext 2020-09-07 12:58:08 -07:00