rt2x00pci.h 550 B

123456789101112131415161718192021222324252627
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. Copyright (C) 2004 - 2009 Ivo van Doorn <[email protected]>
  4. <http://rt2x00.serialmonkey.com>
  5. */
  6. /*
  7. Module: rt2x00pci
  8. Abstract: Data structures for the rt2x00pci module.
  9. */
  10. #ifndef RT2X00PCI_H
  11. #define RT2X00PCI_H
  12. #include <linux/io.h>
  13. #include <linux/pci.h>
  14. /*
  15. * PCI driver handlers.
  16. */
  17. int rt2x00pci_probe(struct pci_dev *pci_dev, const struct rt2x00_ops *ops);
  18. void rt2x00pci_remove(struct pci_dev *pci_dev);
  19. extern const struct dev_pm_ops rt2x00pci_pm_ops;
  20. #endif /* RT2X00PCI_H */