summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorTiwei Bie2018-06-05 16:23:16 +0200
committerAlex Williamson2018-06-05 16:23:16 +0200
commitf88b44f9eb2fbba6540db782b5eaa7efbcb0e266 (patch)
tree4cf105d884d3a910067d56fb6eae494f1bfc935b /include
parentMerge remote-tracking branch 'remotes/vivier2/tags/linux-user-for-3.0-pull-re... (diff)
downloadqemu-f88b44f9eb2fbba6540db782b5eaa7efbcb0e266.tar.gz
qemu-f88b44f9eb2fbba6540db782b5eaa7efbcb0e266.tar.xz
qemu-f88b44f9eb2fbba6540db782b5eaa7efbcb0e266.zip
vfio: remove DPRINTF() definition from vfio-common.h
This macro isn't used by any VFIO code. And its name is too generic. The vfio-common.h (in include/hw/vfio) can be included by other modules in QEMU. It can introduce conflicts. Signed-off-by: Tiwei Bie <tiwei.bie@intel.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Reviewed-by: Eric Auger <eric.auger@redhat.com> Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/hw/vfio/vfio-common.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/include/hw/vfio/vfio-common.h b/include/hw/vfio/vfio-common.h
index 8264a65fa5..a9036929b2 100644
--- a/include/hw/vfio/vfio-common.h
+++ b/include/hw/vfio/vfio-common.h
@@ -33,15 +33,6 @@
#define ERR_PREFIX "vfio error: %s: "
#define WARN_PREFIX "vfio warning: %s: "
-/*#define DEBUG_VFIO*/
-#ifdef DEBUG_VFIO
-#define DPRINTF(fmt, ...) \
- do { fprintf(stderr, "vfio: " fmt, ## __VA_ARGS__); } while (0)
-#else
-#define DPRINTF(fmt, ...) \
- do { } while (0)
-#endif
-
enum {
VFIO_DEVICE_TYPE_PCI = 0,
VFIO_DEVICE_TYPE_PLATFORM = 1,