device/device.c: Rename .disable to .vga_disable
This makes it clear what this function pointer is used for. Change-Id: I2090e164edee513e05a9409d6c7d18c2cdeb8662 Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/coreboot/+/51009 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
318c3ad674
commit
b238caaaca
5 changed files with 6 additions and 6 deletions
|
@ -228,9 +228,9 @@ static void set_vga_bridge_bits(void)
|
|||
/* If we prefer plugin VGA over chipset VGA, the chipset might
|
||||
want to know. */
|
||||
if (!CONFIG(ONBOARD_VGA_IS_PRIMARY) && (vga != vga_onboard) &&
|
||||
vga_onboard && vga_onboard->ops && vga_onboard->ops->disable) {
|
||||
vga_onboard && vga_onboard->ops && vga_onboard->ops->vga_disable) {
|
||||
printk(BIOS_DEBUG, "Use plugin graphics over integrated.\n");
|
||||
vga_onboard->ops->disable(vga_onboard);
|
||||
vga_onboard->ops->vga_disable(vga_onboard);
|
||||
}
|
||||
|
||||
if (vga) {
|
||||
|
|
|
@ -43,7 +43,7 @@ struct device_operations {
|
|||
void (*final)(struct device *dev);
|
||||
void (*scan_bus)(struct device *bus);
|
||||
void (*enable)(struct device *dev);
|
||||
void (*disable)(struct device *dev);
|
||||
void (*vga_disable)(struct device *dev);
|
||||
void (*reset_bus)(struct bus *bus);
|
||||
#if CONFIG(GENERATE_SMBIOS_TABLES)
|
||||
int (*get_smbios_data)(struct device *dev, int *handle,
|
||||
|
|
|
@ -744,7 +744,7 @@ static struct device_operations gma_func0_ops = {
|
|||
.enable_resources = pci_dev_enable_resources,
|
||||
.init = gma_func0_init,
|
||||
.acpi_fill_ssdt = gma_generate_ssdt,
|
||||
.disable = gma_func0_disable,
|
||||
.vga_disable = gma_func0_disable,
|
||||
.ops_pci = &pci_dev_ops_pci,
|
||||
.acpi_name = gma_acpi_name,
|
||||
};
|
||||
|
|
|
@ -646,7 +646,7 @@ static struct device_operations gma_func0_ops = {
|
|||
.enable_resources = pci_dev_enable_resources,
|
||||
.acpi_fill_ssdt = gma_generate_ssdt,
|
||||
.init = gma_func0_init,
|
||||
.disable = gma_func0_disable,
|
||||
.vga_disable = gma_func0_disable,
|
||||
.ops_pci = &pci_dev_ops_pci,
|
||||
.acpi_name = gma_acpi_name,
|
||||
};
|
||||
|
|
|
@ -71,7 +71,7 @@ static struct device_operations gma_func0_ops = {
|
|||
.acpi_fill_ssdt = gma_generate_ssdt,
|
||||
.init = gma_func0_init,
|
||||
.ops_pci = &pci_dev_ops_pci,
|
||||
.disable = gma_func0_disable,
|
||||
.vga_disable = gma_func0_disable,
|
||||
.acpi_name = gma_acpi_name,
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue