m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/pci.h
blob: 93867038b4d1272fff9393de432cb7dabfab281a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef PCI_H
#define PCI_H

#include <linux/device.h>

struct doom_data {
	struct cdev *cdev;
	struct device *device;
	void __iomem *iomem;
};

int pci_init(void);
void pci_cleanup(void);

#endif