/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/int.h

  • Committer: Suren A. Chilingaryan
  • Date: 2011-02-13 02:07:11 UTC
  • Revision ID: csa@dside.dyndns.org-20110213020711-y9bjh3n4ke6p4t4n
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#if !defined(_PCIDRIVER_INT_H) && defined(ENABLE_IRQ)
 
2
#define _PCIDRIVER_INT_H
 
3
 
 
4
int pcidriver_probe_irq(pcidriver_privdata_t *privdata);
 
5
void pcidriver_remove_irq(pcidriver_privdata_t *privdata);
 
6
void pcidriver_irq_unmap_bars(pcidriver_privdata_t *privdata);
 
7
IRQ_HANDLER_FUNC(pcidriver_irq_handler);
 
8
 
 
9
#endif