[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 6/7] hw/ide: Remove the include/hw/ide.h legacy file
From: |
Thomas Huth |
Subject: |
[PATCH 6/7] hw/ide: Remove the include/hw/ide.h legacy file |
Date: |
Mon, 19 Feb 2024 11:49:11 +0100 |
There was only one prototype left in this legacy file. Move it to
ide-dev.h to finally get rid of it.
Signed-off-by: Thomas Huth <thuth@redhat.com>
---
include/hw/ide.h | 9 ---------
include/hw/ide/ide-dev.h | 2 ++
include/hw/ide/internal.h | 1 -
3 files changed, 2 insertions(+), 10 deletions(-)
delete mode 100644 include/hw/ide.h
diff --git a/include/hw/ide.h b/include/hw/ide.h
deleted file mode 100644
index db963bdb77..0000000000
--- a/include/hw/ide.h
+++ /dev/null
@@ -1,9 +0,0 @@
-#ifndef HW_IDE_H
-#define HW_IDE_H
-
-#include "exec/memory.h"
-
-/* ide/core.c */
-void ide_drive_get(DriveInfo **hd, int max_bus);
-
-#endif /* HW_IDE_H */
diff --git a/include/hw/ide/ide-dev.h b/include/hw/ide/ide-dev.h
index de88784a25..ad55997442 100644
--- a/include/hw/ide/ide-dev.h
+++ b/include/hw/ide/ide-dev.h
@@ -181,4 +181,6 @@ typedef struct IDEDrive {
void ide_dev_initfn(IDEDevice *dev, IDEDriveKind kind, Error **errp);
+void ide_drive_get(DriveInfo **hd, int max_bus);
+
#endif
diff --git a/include/hw/ide/internal.h b/include/hw/ide/internal.h
index d1d3fcd23a..0fc2013374 100644
--- a/include/hw/ide/internal.h
+++ b/include/hw/ide/internal.h
@@ -7,7 +7,6 @@
* non-internal declarations are in hw/ide.h
*/
-#include "hw/ide.h"
#include "hw/ide/ide-bus.h"
#include "hw/ide/ide-dma.h"
--
2.43.2
- Re: [PATCH 2/7] hw/ide: Split qdev.c into ide-bus.c and ide-dev.c, (continued)
- [PATCH 5/7] hw/ide: Move IDE DMA related definitions to a separate header ide-dma.h, Thomas Huth, 2024/02/19
- [PATCH 4/7] hw/ide: Move IDE bus related definitions to a new header ide-bus.h, Thomas Huth, 2024/02/19
- [PATCH 6/7] hw/ide: Remove the include/hw/ide.h legacy file,
Thomas Huth <=
- [PATCH 7/7] hw/ide: Stop exposing internal.h to non-IDE files, Thomas Huth, 2024/02/19
- Re: [PATCH 0/7] hw/ide: Clean up hw/ide/qdev.c and include/hw/ide/internal.h, Philippe Mathieu-Daudé, 2024/02/19