linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] sound: pci: ice1712: wm8776.c:  Remove some unused functions
@ 2014-12-20 16:46 Rickard Strandqvist
  2014-12-25 10:12 ` Takashi Iwai
  0 siblings, 1 reply; 2+ messages in thread
From: Rickard Strandqvist @ 2014-12-20 16:46 UTC (permalink / raw)
  To: Jaroslav Kysela, Takashi Iwai
  Cc: Rickard Strandqvist, alsa-devel, linux-kernel

Removes some functions that are not used anywhere:
snd_wm8776_set_master_mode() snd_wm8776_set_adc_if() snd_wm8776_set_dac_if()

This was partially found by using a static code analysis program called cppcheck.

Signed-off-by: Rickard Strandqvist <rickard_strandqvist@spectrumdigital.se>
---
 sound/pci/ice1712/wm8776.c |   15 ---------------
 sound/pci/ice1712/wm8776.h |    3 ---
 2 files changed, 18 deletions(-)

diff --git a/sound/pci/ice1712/wm8776.c b/sound/pci/ice1712/wm8776.c
index e66c0da..ebd2fe4 100644
--- a/sound/pci/ice1712/wm8776.c
+++ b/sound/pci/ice1712/wm8776.c
@@ -452,21 +452,6 @@ void snd_wm8776_resume(struct snd_wm8776 *wm)
 		snd_wm8776_write(wm, i, wm->regs[i]);
 }
 
-void snd_wm8776_set_dac_if(struct snd_wm8776 *wm, u16 dac)
-{
-	snd_wm8776_write(wm, WM8776_REG_DACIFCTRL, dac);
-}
-
-void snd_wm8776_set_adc_if(struct snd_wm8776 *wm, u16 adc)
-{
-	snd_wm8776_write(wm, WM8776_REG_ADCIFCTRL, adc);
-}
-
-void snd_wm8776_set_master_mode(struct snd_wm8776 *wm, u16 mode)
-{
-	snd_wm8776_write(wm, WM8776_REG_MSTRCTRL, mode);
-}
-
 void snd_wm8776_set_power(struct snd_wm8776 *wm, u16 power)
 {
 	snd_wm8776_write(wm, WM8776_REG_PWRDOWN, power);
diff --git a/sound/pci/ice1712/wm8776.h b/sound/pci/ice1712/wm8776.h
index 93a2d69..42acef0 100644
--- a/sound/pci/ice1712/wm8776.h
+++ b/sound/pci/ice1712/wm8776.h
@@ -216,9 +216,6 @@ struct snd_wm8776 {
 
 void snd_wm8776_init(struct snd_wm8776 *wm);
 void snd_wm8776_resume(struct snd_wm8776 *wm);
-void snd_wm8776_set_dac_if(struct snd_wm8776 *wm, u16 dac);
-void snd_wm8776_set_adc_if(struct snd_wm8776 *wm, u16 adc);
-void snd_wm8776_set_master_mode(struct snd_wm8776 *wm, u16 mode);
 void snd_wm8776_set_power(struct snd_wm8776 *wm, u16 power);
 void snd_wm8776_volume_restore(struct snd_wm8776 *wm);
 int snd_wm8776_build_controls(struct snd_wm8776 *wm);
-- 
1.7.10.4


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] sound: pci: ice1712: wm8776.c:  Remove some unused functions
  2014-12-20 16:46 [PATCH] sound: pci: ice1712: wm8776.c: Remove some unused functions Rickard Strandqvist
@ 2014-12-25 10:12 ` Takashi Iwai
  0 siblings, 0 replies; 2+ messages in thread
From: Takashi Iwai @ 2014-12-25 10:12 UTC (permalink / raw)
  To: Rickard Strandqvist; +Cc: Jaroslav Kysela, alsa-devel, linux-kernel

At Sat, 20 Dec 2014 17:46:02 +0100,
Rickard Strandqvist wrote:
> 
> Removes some functions that are not used anywhere:
> snd_wm8776_set_master_mode() snd_wm8776_set_adc_if() snd_wm8776_set_dac_if()
> 
> This was partially found by using a static code analysis program called cppcheck.
> 
> Signed-off-by: Rickard Strandqvist <rickard_strandqvist@spectrumdigital.se>

Thanks, applied.


Takashi

> ---
>  sound/pci/ice1712/wm8776.c |   15 ---------------
>  sound/pci/ice1712/wm8776.h |    3 ---
>  2 files changed, 18 deletions(-)
> 
> diff --git a/sound/pci/ice1712/wm8776.c b/sound/pci/ice1712/wm8776.c
> index e66c0da..ebd2fe4 100644
> --- a/sound/pci/ice1712/wm8776.c
> +++ b/sound/pci/ice1712/wm8776.c
> @@ -452,21 +452,6 @@ void snd_wm8776_resume(struct snd_wm8776 *wm)
>  		snd_wm8776_write(wm, i, wm->regs[i]);
>  }
>  
> -void snd_wm8776_set_dac_if(struct snd_wm8776 *wm, u16 dac)
> -{
> -	snd_wm8776_write(wm, WM8776_REG_DACIFCTRL, dac);
> -}
> -
> -void snd_wm8776_set_adc_if(struct snd_wm8776 *wm, u16 adc)
> -{
> -	snd_wm8776_write(wm, WM8776_REG_ADCIFCTRL, adc);
> -}
> -
> -void snd_wm8776_set_master_mode(struct snd_wm8776 *wm, u16 mode)
> -{
> -	snd_wm8776_write(wm, WM8776_REG_MSTRCTRL, mode);
> -}
> -
>  void snd_wm8776_set_power(struct snd_wm8776 *wm, u16 power)
>  {
>  	snd_wm8776_write(wm, WM8776_REG_PWRDOWN, power);
> diff --git a/sound/pci/ice1712/wm8776.h b/sound/pci/ice1712/wm8776.h
> index 93a2d69..42acef0 100644
> --- a/sound/pci/ice1712/wm8776.h
> +++ b/sound/pci/ice1712/wm8776.h
> @@ -216,9 +216,6 @@ struct snd_wm8776 {
>  
>  void snd_wm8776_init(struct snd_wm8776 *wm);
>  void snd_wm8776_resume(struct snd_wm8776 *wm);
> -void snd_wm8776_set_dac_if(struct snd_wm8776 *wm, u16 dac);
> -void snd_wm8776_set_adc_if(struct snd_wm8776 *wm, u16 adc);
> -void snd_wm8776_set_master_mode(struct snd_wm8776 *wm, u16 mode);
>  void snd_wm8776_set_power(struct snd_wm8776 *wm, u16 power);
>  void snd_wm8776_volume_restore(struct snd_wm8776 *wm);
>  int snd_wm8776_build_controls(struct snd_wm8776 *wm);
> -- 
> 1.7.10.4
> 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-12-25 10:12 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-12-20 16:46 [PATCH] sound: pci: ice1712: wm8776.c: Remove some unused functions Rickard Strandqvist
2014-12-25 10:12 ` Takashi Iwai

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).