| 1 | /* |
| 2 | * QEMU "hardware version" constant |
| 3 | * |
| 4 | * This work is licensed under the terms of the GNU GPL, version 2 or later. |
| 5 | * See the COPYING file in the top-level directory. |
| 6 | */ |
| 7 | #ifndef QEMU_HW_VERSION_H |
| 8 | #define QEMU_HW_VERSION_H |
| 9 | |
| 10 | /* |
| 11 | * Starting on QEMU 2.5, devices with a version string in their |
| 12 | * identification data return "2.5+" instead of QEMU_VERSION. Do |
| 13 | * NOT change this string as it is visible to guests. |
| 14 | */ |
| 15 | #define QEMU_HW_VERSION "2.5+" |
| 16 | |
| 17 | #endif |