mirror of
https://github.com/qemu/qemu.git
synced 2026-04-05 21:46:25 +00:00
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>
18 lines
458 B
C
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
|