/alps/pcitool

To get this branch, use:
bzr branch http://suren.me/webbzr/alps/pcitool

« back to all changes in this revision

Viewing changes to driver/base.h

  • Committer: Suren A. Chilingaryan
  • Date: 2016-02-28 13:50:47 UTC
  • Revision ID: csa@suren.me-20160228135047-kxem2n27a214vlac
Support emulation mode without real hardware

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
int pcidriver_release(struct inode *inode, struct file *filp);
18
18
 
19
19
/* prototypes for device operations */
 
20
#ifndef PCIDRIVER_DUMMY_DEVICE
20
21
static struct pci_driver pcidriver_driver;
 
22
#endif /* ! PCIDRIVER_DUMMY_DEVICE */
21
23
static int __devinit pcidriver_probe(struct pci_dev *pdev, const struct pci_device_id *id);
22
24
static void __devexit pcidriver_remove(struct pci_dev *pdev);
23
25