2021-08-25 15:06:23 +00:00
|
|
|
/* SPDX-License-Identifier: MIT */
|
2021-07-27 12:10:37 +00:00
|
|
|
/*
|
|
|
|
* Copyright © 2021 Intel Corporation
|
|
|
|
*/
|
|
|
|
|
2021-08-25 15:06:23 +00:00
|
|
|
#ifndef __I915_PCI_H__
|
|
|
|
#define __I915_PCI_H__
|
|
|
|
|
2022-08-05 15:59:59 +00:00
|
|
|
#include <linux/types.h>
|
|
|
|
|
|
|
|
struct pci_dev;
|
|
|
|
|
2021-08-25 15:06:23 +00:00
|
|
|
int i915_pci_register_driver(void);
|
|
|
|
void i915_pci_unregister_driver(void);
|
|
|
|
|
2022-08-05 15:59:59 +00:00
|
|
|
bool i915_pci_resource_valid(struct pci_dev *pdev, int bar);
|
|
|
|
|
2021-08-25 15:06:23 +00:00
|
|
|
#endif /* __I915_PCI_H__ */
|