Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.9-rc2 16 lines 366 B view raw
1// SPDX-License-Identifier: MIT 2/* 3 * Copyright © 2023 Intel Corporation 4 */ 5 6#include "intel_display_types.h" 7 8struct pci_dev; 9 10unsigned int intel_gmch_vga_set_decode(struct pci_dev *pdev, bool enable_decode); 11 12unsigned 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}