Title: [7848] trunk/sound/blackfin: ad73322: whitespace shuffle
Revision
7848
Author
vapier
Date
2009-11-18 23:31:24 -0500 (Wed, 18 Nov 2009)

Log Message

ad73322: whitespace shuffle

Modified Paths


Diff

Modified: trunk/sound/blackfin/ad73322.c (7847 => 7848)


--- trunk/sound/blackfin/ad73322.c	2009-11-19 04:29:01 UTC (rev 7847)
+++ trunk/sound/blackfin/ad73322.c	2009-11-19 04:31:24 UTC (rev 7848)
@@ -29,8 +29,8 @@
  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-/* 
- *This driver supports up to 4 AD73322 connected in cascade mode. 
+/*
+ *This driver supports up to 4 AD73322 connected in cascade mode.
  */
 
 #include <linux/init.h>
@@ -144,22 +144,30 @@
 static inline int get_cap_slotindex(int index)
 {
 	int slot_index = 6;
-	switch(index) {
-	case 0:slot_index = 6; 
+	switch (index) {
+	case 0:
+		slot_index = 6;
 		break;
-	case 1:slot_index = 7; 
+	case 1:
+		slot_index = 7;
 		break;
-	case 2:slot_index = 4; 
+	case 2:
+		slot_index = 4;
 		break;
-	case 3:slot_index = 5; 
+	case 3:
+		slot_index = 5;
 		break;
-	case 4:slot_index = 2; 
+	case 4:
+		slot_index = 2;
 		break;
-	case 5:slot_index = 3; 
+	case 5:
+		slot_index = 3;
 		break;
-	case 6:slot_index = 0; 
+	case 6:
+		slot_index = 0;
 		break;
-	case 7:slot_index = 1; 
+	case 7:
+		slot_index = 1;
 		break;
 	}
 	return slot_index;
@@ -310,7 +318,7 @@
 		sub_info->boundary *= 2;
 	}
 	sub_info->dma_offset = 0;
-	
+
 	return 0;
 }
 
@@ -537,14 +545,14 @@
 	}
 	src += start * 8;
 	while (temp_count--) {
-		*idst++ = *(src +slot_index); 
+		*idst++ = *(src + slot_index);
 		src += 8;
 	}
 
 	if (temp2_count) {
 		src = "" short *)chip->rx_dma_buf;
 		while (temp2_count--) {
-			*idst++ = *(src +slot_index); 
+			*idst++ = *(src + slot_index);
 			src += 8;
 		}
 	}
@@ -660,12 +668,12 @@
 static void snd_ad73322_reset(void)
 {
 	snd_printd(KERN_INFO "%s is called\n", __FUNCTION__);
-	
+
 	/* Pull down GPIO_RESET pin on AD73322 */
 	gpio_direction_output(GPIO_RESET, 0);
 	udelay(200);
 	gpio_direction_output(GPIO_RESET, 1);
-	
+
 }
 
 /*************************************************************
@@ -675,7 +683,7 @@
 {
 	short ctrl_regs[8];
 	short dev_addr,reg_addr;
-	int i,j;	
+	int i, j;
 	unsigned short status = 0;
 	short ctrl_buffer[NUM_DEVICES_CHAIN*8];
 	short *pctrl_buffer;
@@ -689,10 +697,10 @@
 	ctrl_regs[4] = SEEN;
 	ctrl_regs[5] = 0;
 	ctrl_regs[6] = 0;
-	
+
 	pctrl_buffer = &ctrl_buffer[0];
 	reg_addr = 1;
-	for (i=0; i<8; i++)
+	for (i = 0; i < 8; i++)
 	{
 		dev_addr = NUM_DEVICES_CHAIN - 1;
 		for (j=0; j<NUM_DEVICES_CHAIN; j++)
@@ -749,9 +757,9 @@
 #else
 	bfin_write_SPORT_TCR1(TFSR);
 	bfin_write_SPORT_TCR2(0xF);
-	SSYNC();	
-	
-	for (i=0; i<8; i++) {	
+	SSYNC();
+
+	for (i = 0; i < 8; i++) {
 		for (j=0; j<NUM_DEVICES_CHAIN; j++)
 			bfin_write_SPORT_TX16(ctrl_buffer[8*i+j]);
 		bfin_write_SPORT_TCR1(bfin_read_SPORT_TCR1() | TSPEN);
@@ -762,13 +770,13 @@
 			SSYNC();
 		}
 		bfin_write_SPORT_TCR1(bfin_read_SPORT_TCR1() & ~TSPEN);
-	}	
+	}
 	SSYNC();
 	snd_ad73322_stop(index);
 #endif
 	local_irq_enable();
-	
 
+
 	return 0;
 }
 
@@ -902,11 +910,11 @@
 	}
 #endif
 	ad73322->sport = sport;
-	for (i=0; i<NUM_DEVICES_CHAIN; i++) {
+	for (i = 0; i < NUM_DEVICES_CHAIN; i++) {
 		if ((err = snd_ad73322_pcm(ad73322, i)) < 0)
 			goto __nodev;
 	}
-	bf53x_sport_config_rx(sport, RFSR, 0xF, 0, 0); 
+	bf53x_sport_config_rx(sport, RFSR, 0xF, 0, 0);
 	bf53x_sport_config_tx(sport, TFSR, 0xF, 0, 0);
 	bf53x_sport_set_multichannel(sport, 1, 1);
 	bf53x_sport_config_rx_dma(sport, ad73322->rx_dma_buf,
@@ -986,7 +994,7 @@
 	int i;
 
 	snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
-	for (i=0; i<NUM_DEVICES_CHAIN; i++)	
+	for (i = 0; i < NUM_DEVICES_CHAIN; i++)
 		snd_pcm_suspend_all(ad73322->pcm[i]);
 
 	return 0;

Modified: trunk/sound/blackfin/ad73322.h (7847 => 7848)


--- trunk/sound/blackfin/ad73322.h	2009-11-19 04:29:01 UTC (rev 7847)
+++ trunk/sound/blackfin/ad73322.h	2009-11-19 04:31:24 UTC (rev 7848)
@@ -32,7 +32,7 @@
 #ifndef __AD73322_H__
 #define __AD73322_H__
 
-/*8 means 4 AD73322 is connected in cascade mode,since every AD73322 has 2 
+/*8 means 4 AD73322 is connected in cascade mode,since every AD73322 has 2
  *DAC/ADC pairs
  */
 #define NUM_DEVICES_CHAIN 8
_______________________________________________
Linux-kernel-commits mailing list
[email protected]
https://blackfin.uclinux.org/mailman/listinfo/linux-kernel-commits

Reply via email to