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