summaryrefslogtreecommitdiffstats
path: root/hw/misc/sga.c
diff options
context:
space:
mode:
authorRichard Henderson2021-11-03 07:28:14 +0100
committerRichard Henderson2021-11-03 07:28:14 +0100
commit58b647616451c1c56a56a8b340a4e91ccc276097 (patch)
treed7c6a630b6b8085332f246f0a722e3198ab74bdd /hw/misc/sga.c
parentMerge remote-tracking branch 'remotes/kwolf/tags/for-upstream' into staging (diff)
parentusb-storage: tag usb_msd_csw as packed struct (diff)
downloadqemu-58b647616451c1c56a56a8b340a4e91ccc276097.tar.gz
qemu-58b647616451c1c56a56a8b340a4e91ccc276097.tar.xz
qemu-58b647616451c1c56a56a8b340a4e91ccc276097.zip
Merge remote-tracking branch 'remotes/kraxel/tags/misc-20211102-pull-request' into staging
MAINTAINERS: audio updates microvm: device tree support console: chardev fixes misc: deprecate sga usb: fix struct usb_msd_csw # gpg: Signature made Tue 02 Nov 2021 12:26:07 PM EDT # gpg: using RSA key A0328CFFB93A17A79901FE7D4CB6D8EED3E87138 # gpg: Good signature from "Gerd Hoffmann (work) <kraxel@redhat.com>" [full] # gpg: aka "Gerd Hoffmann <gerd@kraxel.org>" [full] # gpg: aka "Gerd Hoffmann (private) <kraxel@gmail.com>" [full] * remotes/kraxel/tags/misc-20211102-pull-request: usb-storage: tag usb_msd_csw as packed struct hw/misc: deprecate the 'sga' device ui/console: remove chardev frontend connected test ui/console: replace kbd_timer with chr_accept_input callback ui/console: replace QEMUFIFO with Fifo8 ui/gtk: skip any extra draw of same guest scanout blob res ui/gtk: Update the refresh rate for gl-area too microvm: add device tree support. MAINTAINERS: add myself as partial audio reviewer MAINTAINERS: Add myself as a reviewer for SDL audio Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'hw/misc/sga.c')
-rw-r--r--hw/misc/sga.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/misc/sga.c b/hw/misc/sga.c
index 4dbe6d78f9..1d04672b01 100644
--- a/hw/misc/sga.c
+++ b/hw/misc/sga.c
@@ -30,6 +30,7 @@
#include "hw/loader.h"
#include "qemu/module.h"
#include "qom/object.h"
+#include "qemu/error-report.h"
#define SGABIOS_FILENAME "sgabios.bin"
@@ -42,6 +43,7 @@ struct ISASGAState {
static void sga_realizefn(DeviceState *dev, Error **errp)
{
+ warn_report("-device sga is deprecated, use -machine graphics=off");
rom_add_vga(SGABIOS_FILENAME);
}