summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShaun Ruffell <sruffell@digium.com>2009-03-11 14:50:27 +0000
committerShaun Ruffell <sruffell@digium.com>2009-03-11 14:50:27 +0000
commiteef129c94ac73b4d9cde28e1561db1b6d1fa6059 (patch)
tree77f4eba5d7820787c3fd0feeeef1982999374771
parent606d3e32a59fd01c40d053d25115b13d3d81176d (diff)
Moving the pointer specifier away from the type.
git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@6118 a0bf4364-ded3-4de4-8d8a-66a801d63aff
-rw-r--r--drivers/dahdi/voicebus.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/dahdi/voicebus.c b/drivers/dahdi/voicebus.c
index 35c5eb3..3a6818a 100644
--- a/drivers/dahdi/voicebus.c
+++ b/drivers/dahdi/voicebus.c
@@ -118,13 +118,13 @@ struct voicebus_descriptor {
struct voicebus_descriptor_list {
/* Pointer to an array of descriptors to give to hardware. */
- struct voicebus_descriptor* desc;
+ struct voicebus_descriptor *desc;
/* Read completed buffers from the head. */
unsigned int head;
/* Write ready buffers to the tail. */
unsigned int tail;
/* Array to save the kernel virtual address of pending buffers. */
- void * pending[DRING_SIZE];
+ void *pending[DRING_SIZE];
/* PCI Bus address of the descriptor list. */
dma_addr_t desc_dma;
/*! either DMA_FROM_DEVICE or DMA_TO_DEVICE */
@@ -483,7 +483,7 @@ vb_setctl(struct voicebus *vb, u32 addr, u32 val)
}
static int
-__vb_sdi_clk(struct voicebus* vb)
+__vb_sdi_clk(struct voicebus *vb)
{
unsigned int ret;
vb->sdi &= ~CSR9_MDC;
@@ -1300,7 +1300,7 @@ vb_workfunc(struct work_struct *work)
static void
vb_tasklet(unsigned long data)
{
- struct voicebus *vb = (struct voicebus*)data;
+ struct voicebus *vb = (struct voicebus *)data;
vb_deferred(vb);
}
#endif /* #if VOICEBUS_DEFERRED == WORKQUEUE */