Files
qemu-qemu-1/include/qemu/hw-version.h
Paolo Bonzini 3060e9b93b treewide: replace qemu_hw_version() with QEMU_HW_VERSION
The version is never set on 2.5+ machine types, so qemu_hw_version() and
qemu_set_hw_version() are not needed anymore.

Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2026-03-25 18:22:27 +01:00

18 lines
458 B
C

/*
* QEMU "hardware version" constant
*
* This work is licensed under the terms of the GNU GPL, version 2 or later.
* See the COPYING file in the top-level directory.
*/
#ifndef QEMU_HW_VERSION_H
#define QEMU_HW_VERSION_H
/*
* Starting on QEMU 2.5, devices with a version string in their
* identification data return "2.5+" instead of QEMU_VERSION. Do
* NOT change this string as it is visible to guests.
*/
#define QEMU_HW_VERSION "2.5+"
#endif