/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: Vasilii Chernov
  • Date: 2016-03-02 07:48:24 UTC
  • mfrom: (359 pcitool)
  • mto: This revision was merged to the branch mainline in revision 367.
  • Revision ID: vchernov@inr.ru-20160302074824-gcpwar3f33n5353q
1. Merge with http://ufo.kit.edu/ufo/log/csa/pcitool 359 revision
2. Move api_server to html server

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