summaryrefslogtreecommitdiff
path: root/drivers/dahdi/voicebus/voicebus_net.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/dahdi/voicebus/voicebus_net.h')
-rw-r--r--drivers/dahdi/voicebus/voicebus_net.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/dahdi/voicebus/voicebus_net.h b/drivers/dahdi/voicebus/voicebus_net.h
new file mode 100644
index 0000000..e1dc135
--- /dev/null
+++ b/drivers/dahdi/voicebus/voicebus_net.h
@@ -0,0 +1,10 @@
+#ifdef VOICEBUS_NET_DEBUG
+int vb_net_register(struct voicebus *, const char *);
+void vb_net_unregister(struct voicebus *);
+void vb_net_capture_vbb(struct voicebus *, const void *,
+ const int, const u32, const u16);
+#else
+#define vb_net_register(a, b) do { ; } while (0)
+#define vb_net_unregister(a) do { ; } while (0)
+#define vb_net_capture_vbb(a, b, c, d, e) do { ; } while (0)
+#endif