Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-or-later */
0002 /*
0003     Copyright (C) 2004 - 2009 Ivo van Doorn <IvDoorn@gmail.com>
0004     <http://rt2x00.serialmonkey.com>
0005 
0006  */
0007 
0008 /*
0009     Module: rt2x00pci
0010     Abstract: Data structures for the rt2x00pci module.
0011  */
0012 
0013 #ifndef RT2X00PCI_H
0014 #define RT2X00PCI_H
0015 
0016 #include <linux/io.h>
0017 #include <linux/pci.h>
0018 
0019 /*
0020  * PCI driver handlers.
0021  */
0022 int rt2x00pci_probe(struct pci_dev *pci_dev, const struct rt2x00_ops *ops);
0023 void rt2x00pci_remove(struct pci_dev *pci_dev);
0024 
0025 extern const struct dev_pm_ops rt2x00pci_pm_ops;
0026 
0027 #endif /* RT2X00PCI_H */