diff options
| author | Mark Cave-Ayland | 2021-03-04 23:10:23 +0100 |
|---|---|---|
| committer | Mark Cave-Ayland | 2021-03-07 11:39:05 +0100 |
| commit | 84fbefedfecafba2b339d17c9133225467b90c2e (patch) | |
| tree | 241568248c208ebae8ce59000f3b24ea0cbadc6d /include | |
| parent | esp: checkpatch fixes (diff) | |
| download | qemu-84fbefedfecafba2b339d17c9133225467b90c2e.tar.gz qemu-84fbefedfecafba2b339d17c9133225467b90c2e.tar.xz qemu-84fbefedfecafba2b339d17c9133225467b90c2e.zip | |
esp: rename existing ESP QOM type to SYSBUS_ESP
The existing ESP QOM type currently represents a sysbus device with an embedded
ESP state. Rename the type to SYSBUS_ESP accordingly.
Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Message-Id: <20210304221103.6369-3-mark.cave-ayland@ilande.co.uk>
Diffstat (limited to 'include')
| -rw-r--r-- | include/hw/scsi/esp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/hw/scsi/esp.h b/include/hw/scsi/esp.h index d8a6263c13..8a0740e953 100644 --- a/include/hw/scsi/esp.h +++ b/include/hw/scsi/esp.h @@ -65,8 +65,8 @@ struct ESPState { void (*pdma_cb)(ESPState *s); }; -#define TYPE_ESP "esp" -OBJECT_DECLARE_SIMPLE_TYPE(SysBusESPState, ESP) +#define TYPE_SYSBUS_ESP "sysbus-esp" +OBJECT_DECLARE_SIMPLE_TYPE(SysBusESPState, SYSBUS_ESP) struct SysBusESPState { /*< private >*/ |
