xref: /linux/drivers/gpu/drm/xe/display/xe_display_misc.c (revision 3710578d2d580d42abe27f17bab9a4cafb6aad67)
1 // SPDX-License-Identifier: MIT
2 /*
3  * Copyright © 2023 Intel Corporation
4  */
5 
6 #include "intel_display_types.h"
7 
8 struct pci_dev;
9 
10 unsigned int intel_gmch_vga_set_decode(struct pci_dev *pdev, bool enable_decode);
11 
12 unsigned int intel_gmch_vga_set_decode(struct pci_dev *pdev, bool enable_decode)
13 {
14 	/* ToDo: Implement the actual handling of vga decode */
15 	return 0;
16 }
17