mISDN: Fix indenting in dsp_cmx.c

We used a script to indent this code back in 2012, but I guess it got
confused by the ifdefs and added some extra tabs.  This patch removes
them.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Dan Carpenter 2019-05-21 12:42:56 +03:00 committed by David S. Miller
parent 40a1578d63
commit d008b3d2be
1 changed files with 218 additions and 219 deletions

View File

@ -1851,14 +1851,14 @@ dsp_cmx_send(void *arg)
/* unlock */
spin_unlock_irqrestore(&dsp_lock, flags);
}
}
/*
* audio data is transmitted from upper layer to the dsp
*/
void
dsp_cmx_transmit(struct dsp *dsp, struct sk_buff *skb)
{
void
dsp_cmx_transmit(struct dsp *dsp, struct sk_buff *skb)
{
u_int w, ww;
u8 *d, *p;
int space; /* todo: , l = skb->len; */
@ -1884,7 +1884,6 @@ dsp_cmx_send(void *arg)
/* write until all byte are copied */
ww = (w + skb->len) & CMX_BUFF_MASK;
dsp->tx_W = ww;
/* show current buffer */
#ifdef CMX_DEBUG
printk(KERN_DEBUG
@ -1908,14 +1907,14 @@ dsp_cmx_send(void *arg)
printk(KERN_DEBUG "%s\n", debugbuf);
#endif
}
}
/*
* hdlc data is received from card and sent to all members.
*/
void
dsp_cmx_hdlc(struct dsp *dsp, struct sk_buff *skb)
{
void
dsp_cmx_hdlc(struct dsp *dsp, struct sk_buff *skb)
{
struct sk_buff *nskb = NULL;
struct dsp_conf_member *member;
struct mISDNhead *hh;
@ -1958,4 +1957,4 @@ dsp_cmx_send(void *arg)
}
}
}
}
}