summaryrefslogtreecommitdiffstats
path: root/irq.h
diff options
context:
space:
mode:
authorSuren A. Chilingaryan <csa@dside.dyndns.org>2011-07-11 03:48:13 +0200
committerSuren A. Chilingaryan <csa@dside.dyndns.org>2011-07-11 03:48:13 +0200
commit40c61a3b927ce31e05a6eb0d7b36e09e67c6ca97 (patch)
treebaf559a19f5dd348856012d469935b2b29a86de1 /irq.h
parent82167742d62f1cd583d7eb99b356864df70afd8b (diff)
downloadpcitool-40c61a3b927ce31e05a6eb0d7b36e09e67c6ca97.tar.gz
pcitool-40c61a3b927ce31e05a6eb0d7b36e09e67c6ca97.tar.bz2
pcitool-40c61a3b927ce31e05a6eb0d7b36e09e67c6ca97.tar.xz
pcitool-40c61a3b927ce31e05a6eb0d7b36e09e67c6ca97.zip
Wait for the completion of DMA operations during writes
Diffstat (limited to 'irq.h')
-rw-r--r--irq.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/irq.h b/irq.h
new file mode 100644
index 0000000..dff7a70
--- /dev/null
+++ b/irq.h
@@ -0,0 +1,10 @@
+#ifndef _PCILIB_IRQ_H
+#define _PCILIB_IRQ_H
+
+typedef enum {
+ PCILIB_DMA_IRQ = 1,
+ PCILIB_EVENT_IRQ = 2
+} pcilib_irq_type_t;
+
+
+#endif /* _PCILIB_IRQ_H */