#ifndef DREX_H_ #define DREX_H_ #include #include #include #include /* This is a "private" data structure */ /* You can store there any data that should be passed between driver's functions */ struct drexpcie_driver_priv { struct pci_dev *pdev; unsigned long mem_start; unsigned long mem_len; u8 __iomem *bar0_mem; }; #endif