From 963e94a97b3052529678253c6e6efcf102ca3635 Mon Sep 17 00:00:00 2001 From: Thomas Huth Date: Wed, 10 May 2023 21:22:50 +0200 Subject: hw/char/parallel: Move TYPE_ISA_PARALLEL to the header file We are going to require the macro from other files, too, so move this #define to the header file. Message-Id: <20230512124033.502654-9-thuth@redhat.com> Acked-by: Paolo Bonzini Signed-off-by: Thomas Huth --- hw/char/parallel-isa.c | 2 +- hw/char/parallel.c | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) (limited to 'hw/char') diff --git a/hw/char/parallel-isa.c b/hw/char/parallel-isa.c index 1ccbb96..547ae69 100644 --- a/hw/char/parallel-isa.c +++ b/hw/char/parallel-isa.c @@ -21,7 +21,7 @@ static void parallel_init(ISABus *bus, int index, Chardev *chr) DeviceState *dev; ISADevice *isadev; - isadev = isa_new("isa-parallel"); + isadev = isa_new(TYPE_ISA_PARALLEL); dev = DEVICE(isadev); qdev_prop_set_uint32(dev, "index", index); qdev_prop_set_chr(dev, "chardev", chr); diff --git a/hw/char/parallel.c b/hw/char/parallel.c index af551e7..3d32589 100644 --- a/hw/char/parallel.c +++ b/hw/char/parallel.c @@ -93,7 +93,6 @@ typedef struct ParallelState { PortioList portio_list; } ParallelState; -#define TYPE_ISA_PARALLEL "isa-parallel" OBJECT_DECLARE_SIMPLE_TYPE(ISAParallelState, ISA_PARALLEL) struct ISAParallelState { -- cgit v1.1