i915_pci.h 338 B

123456789101112131415161718
  1. /* SPDX-License-Identifier: MIT */
  2. /*
  3. * Copyright © 2021 Intel Corporation
  4. */
  5. #ifndef __I915_PCI_H__
  6. #define __I915_PCI_H__
  7. #include <linux/types.h>
  8. struct pci_dev;
  9. int i915_pci_register_driver(void);
  10. void i915_pci_unregister_driver(void);
  11. bool i915_pci_resource_valid(struct pci_dev *pdev, int bar);
  12. #endif /* __I915_PCI_H__ */