Message ID | 20241017113344.883424-3-berrange@redhat.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | include: move include/qapi/qmp/ to include/qobject/ | expand |
On Thu, Oct 17, 2024 at 12:33:14PM +0100, Daniel P. Berrangé wrote: > Date: Thu, 17 Oct 2024 12:33:14 +0100 > From: "Daniel P. Berrangé" <berrange@redhat.com> > Subject: [PATCH v2 02/31] audio: adapt to new import path for qobject data > type headers > > The qobject data type headers have moved from qapi/qmp/ to > qobject/. > > Signed-off-by: Daniel P. Berrangé <berrange@redhat.com> > --- > audio/audio-hmp-cmds.c | 2 +- > audio/audio.c | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) Reviewed-by: Zhao Liu <zhao1.liu@intel.com>
diff --git a/audio/audio-hmp-cmds.c b/audio/audio-hmp-cmds.c index c9608b715b..8774c09f18 100644 --- a/audio/audio-hmp-cmds.c +++ b/audio/audio-hmp-cmds.c @@ -27,7 +27,7 @@ #include "monitor/hmp.h" #include "monitor/monitor.h" #include "qapi/error.h" -#include "qapi/qmp/qdict.h" +#include "qobject/qdict.h" static QLIST_HEAD (capture_list_head, CaptureState) capture_head; diff --git a/audio/audio.c b/audio/audio.c index af0ae33fed..2067d7e5f8 100644 --- a/audio/audio.c +++ b/audio/audio.c @@ -32,7 +32,7 @@ #include "qapi/qobject-input-visitor.h" #include "qapi/qapi-visit-audio.h" #include "qapi/qapi-commands-audio.h" -#include "qapi/qmp/qdict.h" +#include "qobject/qdict.h" #include "qemu/cutils.h" #include "qemu/error-report.h" #include "qemu/log.h"
The qobject data type headers have moved from qapi/qmp/ to qobject/. Signed-off-by: Daniel P. Berrangé <berrange@redhat.com> --- audio/audio-hmp-cmds.c | 2 +- audio/audio.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)