diff options
Diffstat (limited to 'pci.h')
-rw-r--r-- | pci.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,8 +1,11 @@ #ifndef PCI_H #define PCI_H +#include <linux/device.h> + struct doom_data { - int minor; + struct cdev *cdev; + struct device *device; }; int pci_init(void); |