summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/i915/i915_pci.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/drm/i915/i915_pci.h')
-rw-r--r--drivers/gpu/drm/i915/i915_pci.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/i915_pci.h b/drivers/gpu/drm/i915/i915_pci.h
new file mode 100644
index 000000000..8dfe19f9a
--- /dev/null
+++ b/drivers/gpu/drm/i915/i915_pci.h
@@ -0,0 +1,18 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2021 Intel Corporation
+ */
+
+#ifndef __I915_PCI_H__
+#define __I915_PCI_H__
+
+#include <linux/types.h>
+
+struct pci_dev;
+
+int i915_pci_register_driver(void);
+void i915_pci_unregister_driver(void);
+
+bool i915_pci_resource_valid(struct pci_dev *pdev, int bar);
+
+#endif /* __I915_PCI_H__ */