summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/xe/display/xe_display_misc.c
blob: 242c2ef4ca937747af958d8bc12f6575c6bbc91c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-License-Identifier: MIT
/*
 * Copyright © 2023 Intel Corporation
 */

#include "intel_display_types.h"

struct pci_dev;

unsigned int intel_gmch_vga_set_decode(struct pci_dev *pdev, bool enable_decode);

unsigned int intel_gmch_vga_set_decode(struct pci_dev *pdev, bool enable_decode)
{
	/* ToDo: Implement the actual handling of vga decode */
	return 0;
}