diff mbox series

Sound:vx_uer:Delete extra blank lines

Message ID 20241008014806.7573-1-zhujun2@cmss.chinamobile.com (mailing list archive)
State New
Headers show
Series Sound:vx_uer:Delete extra blank lines | expand

Commit Message

Zhu Jun Oct. 8, 2024, 1:48 a.m. UTC
Delete extra blank lines inside in vx_uer.c

Signed-off-by: Zhu Jun <zhujun2@cmss.chinamobile.com>
---
 sound/drivers/vx/vx_uer.c | 8 --------
 1 file changed, 8 deletions(-)

Comments

Takashi Iwai Oct. 8, 2024, 8:15 a.m. UTC | #1
On Tue, 08 Oct 2024 03:48:06 +0200,
Zhu Jun wrote:
> 
> Delete extra blank lines inside in vx_uer.c
> 
> Signed-off-by: Zhu Jun <zhujun2@cmss.chinamobile.com>

I won't take space-fix only change unless it's together with other
real fixes.  So skip this for now.


thanks,

Takashi
diff mbox series

Patch

diff --git a/sound/drivers/vx/vx_uer.c b/sound/drivers/vx/vx_uer.c
index 3eca22151225..a0ce9b205e4d 100644
--- a/sound/drivers/vx/vx_uer.c
+++ b/sound/drivers/vx/vx_uer.c
@@ -12,7 +12,6 @@ 
 #include <sound/vx_core.h>
 #include "vx_cmd.h"
 
-
 /*
  * vx_modify_board_clock - tell the board that its clock has been modified
  * @sync: DSP needs to resynchronize its FIFO
@@ -127,7 +126,6 @@  static int vx_read_uer_status(struct vx_core *chip, unsigned int *mode)
 	return freq;
 }
 
-
 /*
  * compute the sample clock value from frequency
  *
@@ -144,7 +142,6 @@  static int vx_read_uer_status(struct vx_core *chip, unsigned int *mode)
  *    case 0x00000700: HexFreq = (dword) (((double) 28224000 / (double) (Frequency*2)) - 1)
  *    default        : HexFreq = (dword) ((double) 28224000 / (double) (Frequency*4)) - 0x000001FF
  */
-
 static int vx_calc_clock_from_freq(struct vx_core *chip, int freq)
 {
 	int hexfreq;
@@ -169,7 +166,6 @@  static int vx_calc_clock_from_freq(struct vx_core *chip, int freq)
 	return 0x5fe; 	/* min freq = 6893 Hz */
 }
 
-
 /*
  * vx_change_clock_source - change the clock source
  * @source: the new source
@@ -186,7 +182,6 @@  static void vx_change_clock_source(struct vx_core *chip, int source)
 	vx_toggle_dac_mute(chip, 0);
 }
 
-
 /*
  * set the internal clock
  */
@@ -209,7 +204,6 @@  void vx_set_internal_clock(struct vx_core *chip, unsigned int freq)
 	mutex_unlock(&chip->lock);
 }
 
-
 /*
  * set the iec958 status bits
  * @bits: 32-bit status bits
@@ -225,7 +219,6 @@  void vx_set_iec958_status(struct vx_core *chip, unsigned int bits)
 		vx_write_one_cbit(chip, i, bits & (1 << i));
 }
 
-
 /*
  * vx_set_clock - change the clock and audio source if necessary
  */
@@ -267,7 +260,6 @@  int vx_set_clock(struct vx_core *chip, unsigned int freq)
 	return 0;
 }
 
-
 /*
  * vx_change_frequency - called from interrupt handler
  */