summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorShaun Ruffell <sruffell@digium.com>2011-01-03 18:25:18 +0000
committerShaun Ruffell <sruffell@digium.com>2011-01-03 18:25:18 +0000
commit6505a3ee15efd50dcef350c076311b206cdff3c7 (patch)
treeb06bffe09debe61b1f62f0d4323f303e9bafdb4d /include
parenteda88515ac1478dd2d1196ba01481f4c39d268a4 (diff)
dahdi_dynamic_[loc|eth|ethmf]: Remove unused return value from transmit callback.
The return value from the transmit callback function was not used anywhere, and is now removed. Signed-off-by: Shaun Ruffell <sruffell@digium.com> Acked-by: Kinsey Moore <kmoore@digium.com> git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@9570 a0bf4364-ded3-4de4-8d8a-66a801d63aff
Diffstat (limited to 'include')
-rw-r--r--include/dahdi/kernel.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dahdi/kernel.h b/include/dahdi/kernel.h
index 72e9bae..26bce0b 100644
--- a/include/dahdi/kernel.h
+++ b/include/dahdi/kernel.h
@@ -1000,7 +1000,7 @@ struct dahdi_dynamic_driver {
void (*destroy)(void *tpipe);
/*! Transmit a given message */
- int (*transmit)(void *tpipe, unsigned char *msg, int msglen);
+ void (*transmit)(void *tpipe, unsigned char *msg, int msglen);
/*! Flush any pending messages */
int (*flush)(void);