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

#include <linux/device.h>

struct doom_data {
	struct cdev *cdev;
	struct device *device;
};

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

#endif