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>
diff --git a/src/include/device/device.h b/src/include/device/device.h
index 0e1ca12..01e2c82 100644
--- a/src/include/device/device.h
+++ b/src/include/device/device.h
@@ -43,7 +43,7 @@
 	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,