bf3fe05dfb
This needs some more testing before it's on by default. If the card is otherwise functioning, these messages may be confusing to the user. If the card is not functioning, the driver can be reloaded with debug to check for this condition. Signed-off-by: Shaun Ruffell <sruffell@digium.com> git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@9205 a0bf4364-ded3-4de4-8d8a-66a801d63aff
11 lines
388 B
C
11 lines
388 B
C
#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
|