/alps/ipecamera

To get this branch, use:
bzr branch http://darksoft.org/webbzr/alps/ipecamera

« back to all changes in this revision

Viewing changes to driver/int.h

  • Committer: Suren A. Chilingaryan
  • Date: 2015-04-27 00:28:57 UTC
  • Revision ID: csa@suren.me-20150427002857-82fk6r3e8rfgy4wr
First stand-alone ipecamera implementation

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