diff options
author | Alper Nebi Yasak <alpernebiyasak@gmail.com> | 2024-03-21 13:46:43 +0300 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-07-11 11:05:43 +0000 |
commit | 30610597f240f132b99376ce4cb94c665023a2b4 (patch) | |
tree | 4bb40f90d297c91f2c389e522644477e05955259 /src/drivers/emulation/qemu/bochs.c | |
parent | 8ae0eff824ecdf72e21901edeed84b6afecbf741 (diff) |
drivers/qemu: Clarify config option name for QEMU display resolution
A previous commit splits out Cirrus display support from Bochs display
support, with both using the pre-existing Bochs config options for the
requested display resolution. Rename these config names to clarify they
are not only specific to the Bochs display driver.
Change-Id: Ie0a5e75731231bb768d7728867196c9ab5c53a00
Signed-off-by: Alper Nebi Yasak <alpernebiyasak@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/82060
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/drivers/emulation/qemu/bochs.c')
-rw-r--r-- | src/drivers/emulation/qemu/bochs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/drivers/emulation/qemu/bochs.c b/src/drivers/emulation/qemu/bochs.c index 06504309e0..2e0526fa8f 100644 --- a/src/drivers/emulation/qemu/bochs.c +++ b/src/drivers/emulation/qemu/bochs.c @@ -39,8 +39,8 @@ #define VBE_DISPI_LFB_ENABLED 0x40 #define VBE_DISPI_NOCLEARMEM 0x80 -static int width = CONFIG_DRIVERS_EMULATION_QEMU_BOCHS_XRES; -static int height = CONFIG_DRIVERS_EMULATION_QEMU_BOCHS_YRES; +static int width = CONFIG_DRIVERS_EMULATION_QEMU_XRES; +static int height = CONFIG_DRIVERS_EMULATION_QEMU_YRES; static void bochs_write(struct resource *res, int index, int val) { |