From 4aea9102e00159077ff5df3c584159495880ea54 Mon Sep 17 00:00:00 2001 From: Shaun Ruffell Date: Mon, 3 Jan 2011 18:26:34 +0000 Subject: dahdi: Trivial move of sync_tick callback to inline function. This is a trivial cleanup to primarily to remove the #ifdef test out of process_masterspan. Signed-off-by: Shaun Ruffell Acked-by: Kinsey Moore git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@9586 a0bf4364-ded3-4de4-8d8a-66a801d63aff --- drivers/dahdi/dahdi-base.c | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) (limited to 'drivers') diff --git a/drivers/dahdi/dahdi-base.c b/drivers/dahdi/dahdi-base.c index a896f63..f1b6ff2 100644 --- a/drivers/dahdi/dahdi-base.c +++ b/drivers/dahdi/dahdi-base.c @@ -8526,6 +8526,16 @@ static inline void pseudo_rx_audio(struct dahdi_chan *chan) } #endif /* CONFIG_DAHDI_MIRROR */ +#ifdef DAHDI_SYNC_TICK +static inline void dahdi_sync_tick(struct dahdi_span *const s) +{ + if (s->ops->sync_tick) + s->ops->sync_tick(s, s == master); +} +#else +#define dahdi_sync_tick(x) do { ; } while (0) +#endif + static void process_masterspan(void) { unsigned long flags; @@ -8597,10 +8607,8 @@ static void process_masterspan(void) __buf_push(&chan->confout, NULL); spin_unlock(&chan->lock); } -#ifdef DAHDI_SYNC_TICK - if (s->ops->sync_tick) - s->ops->sync_tick(s, s == master); -#endif + + dahdi_sync_tick(s); } spin_unlock_irqrestore(&chan_lock, flags); } -- cgit v1.2.3