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