1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #ifndef RT2X00PCI_H
- #define RT2X00PCI_H
- #include <linux/io.h>
- #include <linux/pci.h>
- #define PCI_DEVICE_DATA(__ops) .driver_data = (kernel_ulong_t)(__ops)
- int rt2x00pci_probe(struct pci_dev *pci_dev, const struct rt2x00_ops *ops);
- void rt2x00pci_remove(struct pci_dev *pci_dev);
- #ifdef CONFIG_PM
- int rt2x00pci_suspend(struct pci_dev *pci_dev, pm_message_t state);
- int rt2x00pci_resume(struct pci_dev *pci_dev);
- #else
- #define rt2x00pci_suspend NULL
- #define rt2x00pci_resume NULL
- #endif
- #endif
|