diff options
| author | Bernhard Beschow <shentey@gmail.com> | 2022-10-22 17:04:33 +0200 |
|---|---|---|
| committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2022-10-31 11:32:07 +0100 |
| commit | bb2e9b1d660a4bf11c169388b577c851c51ffe24 (patch) | |
| tree | bbbc7e9c17dcbda313636229eed7f8be13f6804a /include/hw/ide/piix.h | |
| parent | 0b6fdb933b04637a240bd132d626d1daf2d8d7a7 (diff) | |
| download | focaccia-qemu-bb2e9b1d660a4bf11c169388b577c851c51ffe24.tar.gz focaccia-qemu-bb2e9b1d660a4bf11c169388b577c851c51ffe24.zip | |
hw/ide/piix: Introduce TYPE_ macros for PIIX IDE controllers
Suggested-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> Signed-off-by: Bernhard Beschow <shentey@gmail.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-Id: <20221022150508.26830-9-shentey@gmail.com> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Diffstat (limited to 'include/hw/ide/piix.h')
| -rw-r--r-- | include/hw/ide/piix.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/hw/ide/piix.h b/include/hw/ide/piix.h new file mode 100644 index 0000000000..ef3ef3d62d --- /dev/null +++ b/include/hw/ide/piix.h @@ -0,0 +1,7 @@ +#ifndef HW_IDE_PIIX_H +#define HW_IDE_PIIX_H + +#define TYPE_PIIX3_IDE "piix3-ide" +#define TYPE_PIIX4_IDE "piix4-ide" + +#endif /* HW_IDE_PIIX_H */ |