[alsa-devel][RESEND PATCH 1/3 v3] ASoC: TSCS42xx: Shorten lines and other cleanup

2018-04-04 Thread Steven Eckhoff
Shorten lines greater than 80 chars
Add const to struct snd_soc_component_driver

Signed-off-by: Steven Eckhoff 
---
 sound/soc/codecs/tscs42xx.c | 87 -
 1 file changed, 55 insertions(+), 32 deletions(-)

diff --git a/sound/soc/codecs/tscs42xx.c b/sound/soc/codecs/tscs42xx.c
index bbfc73a79b18..5ad68e5538ae 100644
--- a/sound/soc/codecs/tscs42xx.c
+++ b/sound/soc/codecs/tscs42xx.c
@@ -204,7 +204,8 @@ static int power_up_audio_plls(struct snd_soc_component 
*component)
break;
default:
ret = -EINVAL;
-   dev_err(component->dev, "Unrecognized PLL output freq (%d)\n", 
ret);
+   dev_err(component->dev,
+   "Unrecognized PLL output freq (%d)\n", ret);
return ret;
}
 
@@ -261,7 +262,8 @@ static int power_down_audio_plls(struct snd_soc_component 
*component)
 static int coeff_ram_get(struct snd_kcontrol *kcontrol,
struct snd_ctl_elem_value *ucontrol)
 {
-   struct snd_soc_component *component = 
snd_soc_kcontrol_component(kcontrol);
+   struct snd_soc_component *component =
+   snd_soc_kcontrol_component(kcontrol);
struct tscs42xx *tscs42xx = snd_soc_component_get_drvdata(component);
struct coeff_ram_ctl *ctl =
(struct coeff_ram_ctl *)kcontrol->private_value;
@@ -280,7 +282,8 @@ static int coeff_ram_get(struct snd_kcontrol *kcontrol,
 static int coeff_ram_put(struct snd_kcontrol *kcontrol,
struct snd_ctl_elem_value *ucontrol)
 {
-   struct snd_soc_component *component = 
snd_soc_kcontrol_component(kcontrol);
+   struct snd_soc_component *component =
+   snd_soc_kcontrol_component(kcontrol);
struct tscs42xx *tscs42xx = snd_soc_component_get_drvdata(component);
struct coeff_ram_ctl *ctl =
(struct coeff_ram_ctl *)kcontrol->private_value;
@@ -363,7 +366,8 @@ static int dapm_micb_event(struct snd_soc_dapm_widget *w,
 static int pll_event(struct snd_soc_dapm_widget *w,
 struct snd_kcontrol *kcontrol, int event)
 {
-   struct snd_soc_component *component = 
snd_soc_dapm_to_component(w->dapm);
+   struct snd_soc_component *component =
+   snd_soc_dapm_to_component(w->dapm);
int ret;
 
if (SND_SOC_DAPM_EVENT_ON(event))
@@ -377,7 +381,8 @@ static int pll_event(struct snd_soc_dapm_widget *w,
 static int dac_event(struct snd_soc_dapm_widget *w,
 struct snd_kcontrol *kcontrol, int event)
 {
-   struct snd_soc_component *component = 
snd_soc_dapm_to_component(w->dapm);
+   struct snd_soc_component *component =
+   snd_soc_dapm_to_component(w->dapm);
struct tscs42xx *tscs42xx = snd_soc_component_get_drvdata(component);
int ret;
 
@@ -819,16 +824,19 @@ static int setup_sample_format(struct snd_soc_component 
*component,
dev_err(component->dev, "Unsupported format width (%d)\n", ret);
return ret;
}
-   ret = snd_soc_component_update_bits(component, R_AIC1, RM_AIC1_WL, 
width);
+   ret = snd_soc_component_update_bits(component,
+   R_AIC1, RM_AIC1_WL, width);
if (ret < 0) {
-   dev_err(component->dev, "Failed to set sample width (%d)\n", 
ret);
+   dev_err(component->dev,
+   "Failed to set sample width (%d)\n", ret);
return ret;
}
 
return 0;
 }
 
-static int setup_sample_rate(struct snd_soc_component *component, unsigned int 
rate)
+static int setup_sample_rate(struct snd_soc_component *component,
+   unsigned int rate)
 {
struct tscs42xx *tscs42xx = snd_soc_component_get_drvdata(component);
unsigned int br, bm;
@@ -881,24 +889,32 @@ static int setup_sample_rate(struct snd_soc_component 
*component, unsigned int r
}
 
/* DAC and ADC share bit and frame clock */
-   ret = snd_soc_component_update_bits(component, R_DACSR, RM_DACSR_DBR, 
br);
+   ret = snd_soc_component_update_bits(component,
+   R_DACSR, RM_DACSR_DBR, br);
if (ret < 0) {
-   dev_err(component->dev, "Failed to update register (%d)\n", 
ret);
+   dev_err(component->dev,
+   "Failed to update register (%d)\n", ret);
return ret;
}
-   ret = snd_soc_component_update_bits(component, R_DACSR, RM_DACSR_DBM, 
bm);
+   ret = snd_soc_component_update_bits(component,
+   R_DACSR, RM_DACSR_DBM, bm);
if (ret < 0) {
-   dev_err(component->dev, "Failed to update register (%d)\n", 
ret);
+   dev_err(component->dev,
+   "Failed to update register (%d)\n", ret);
return ret;
}
-   ret = snd_soc_component_update_bits(component, R_ADCSR, 

[alsa-devel][RESEND PATCH 1/3 v3] ASoC: TSCS42xx: Shorten lines and other cleanup

2018-04-04 Thread Steven Eckhoff
Shorten lines greater than 80 chars
Add const to struct snd_soc_component_driver

Signed-off-by: Steven Eckhoff 
---
 sound/soc/codecs/tscs42xx.c | 87 -
 1 file changed, 55 insertions(+), 32 deletions(-)

diff --git a/sound/soc/codecs/tscs42xx.c b/sound/soc/codecs/tscs42xx.c
index bbfc73a79b18..5ad68e5538ae 100644
--- a/sound/soc/codecs/tscs42xx.c
+++ b/sound/soc/codecs/tscs42xx.c
@@ -204,7 +204,8 @@ static int power_up_audio_plls(struct snd_soc_component 
*component)
break;
default:
ret = -EINVAL;
-   dev_err(component->dev, "Unrecognized PLL output freq (%d)\n", 
ret);
+   dev_err(component->dev,
+   "Unrecognized PLL output freq (%d)\n", ret);
return ret;
}
 
@@ -261,7 +262,8 @@ static int power_down_audio_plls(struct snd_soc_component 
*component)
 static int coeff_ram_get(struct snd_kcontrol *kcontrol,
struct snd_ctl_elem_value *ucontrol)
 {
-   struct snd_soc_component *component = 
snd_soc_kcontrol_component(kcontrol);
+   struct snd_soc_component *component =
+   snd_soc_kcontrol_component(kcontrol);
struct tscs42xx *tscs42xx = snd_soc_component_get_drvdata(component);
struct coeff_ram_ctl *ctl =
(struct coeff_ram_ctl *)kcontrol->private_value;
@@ -280,7 +282,8 @@ static int coeff_ram_get(struct snd_kcontrol *kcontrol,
 static int coeff_ram_put(struct snd_kcontrol *kcontrol,
struct snd_ctl_elem_value *ucontrol)
 {
-   struct snd_soc_component *component = 
snd_soc_kcontrol_component(kcontrol);
+   struct snd_soc_component *component =
+   snd_soc_kcontrol_component(kcontrol);
struct tscs42xx *tscs42xx = snd_soc_component_get_drvdata(component);
struct coeff_ram_ctl *ctl =
(struct coeff_ram_ctl *)kcontrol->private_value;
@@ -363,7 +366,8 @@ static int dapm_micb_event(struct snd_soc_dapm_widget *w,
 static int pll_event(struct snd_soc_dapm_widget *w,
 struct snd_kcontrol *kcontrol, int event)
 {
-   struct snd_soc_component *component = 
snd_soc_dapm_to_component(w->dapm);
+   struct snd_soc_component *component =
+   snd_soc_dapm_to_component(w->dapm);
int ret;
 
if (SND_SOC_DAPM_EVENT_ON(event))
@@ -377,7 +381,8 @@ static int pll_event(struct snd_soc_dapm_widget *w,
 static int dac_event(struct snd_soc_dapm_widget *w,
 struct snd_kcontrol *kcontrol, int event)
 {
-   struct snd_soc_component *component = 
snd_soc_dapm_to_component(w->dapm);
+   struct snd_soc_component *component =
+   snd_soc_dapm_to_component(w->dapm);
struct tscs42xx *tscs42xx = snd_soc_component_get_drvdata(component);
int ret;
 
@@ -819,16 +824,19 @@ static int setup_sample_format(struct snd_soc_component 
*component,
dev_err(component->dev, "Unsupported format width (%d)\n", ret);
return ret;
}
-   ret = snd_soc_component_update_bits(component, R_AIC1, RM_AIC1_WL, 
width);
+   ret = snd_soc_component_update_bits(component,
+   R_AIC1, RM_AIC1_WL, width);
if (ret < 0) {
-   dev_err(component->dev, "Failed to set sample width (%d)\n", 
ret);
+   dev_err(component->dev,
+   "Failed to set sample width (%d)\n", ret);
return ret;
}
 
return 0;
 }
 
-static int setup_sample_rate(struct snd_soc_component *component, unsigned int 
rate)
+static int setup_sample_rate(struct snd_soc_component *component,
+   unsigned int rate)
 {
struct tscs42xx *tscs42xx = snd_soc_component_get_drvdata(component);
unsigned int br, bm;
@@ -881,24 +889,32 @@ static int setup_sample_rate(struct snd_soc_component 
*component, unsigned int r
}
 
/* DAC and ADC share bit and frame clock */
-   ret = snd_soc_component_update_bits(component, R_DACSR, RM_DACSR_DBR, 
br);
+   ret = snd_soc_component_update_bits(component,
+   R_DACSR, RM_DACSR_DBR, br);
if (ret < 0) {
-   dev_err(component->dev, "Failed to update register (%d)\n", 
ret);
+   dev_err(component->dev,
+   "Failed to update register (%d)\n", ret);
return ret;
}
-   ret = snd_soc_component_update_bits(component, R_DACSR, RM_DACSR_DBM, 
bm);
+   ret = snd_soc_component_update_bits(component,
+   R_DACSR, RM_DACSR_DBM, bm);
if (ret < 0) {
-   dev_err(component->dev, "Failed to update register (%d)\n", 
ret);
+   dev_err(component->dev,
+   "Failed to update register (%d)\n", ret);
return ret;
}
-   ret = snd_soc_component_update_bits(component, R_ADCSR, RM_DACSR_DBR, 
br);
+   ret =