summaryrefslogtreecommitdiffstats
path: root/driver/int.h
diff options
context:
space:
mode:
Diffstat (limited to 'driver/int.h')
-rw-r--r--driver/int.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/driver/int.h b/driver/int.h
new file mode 100644
index 0000000..4a834c7
--- /dev/null
+++ b/driver/int.h
@@ -0,0 +1,9 @@
+#if !defined(_PCIDRIVER_INT_H) && defined(ENABLE_IRQ)
+#define _PCIDRIVER_INT_H
+
+int pcidriver_probe_irq(pcidriver_privdata_t *privdata);
+void pcidriver_remove_irq(pcidriver_privdata_t *privdata);
+void pcidriver_irq_unmap_bars(pcidriver_privdata_t *privdata);
+IRQ_HANDLER_FUNC(pcidriver_irq_handler);
+
+#endif