linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 14/20] media: dvb-frontends: lgdt3306a.c: remove dead code
@ 2020-08-07  8:35 Daniel W. S. Almeida
  2020-08-19 13:35 ` Hans Verkuil
  0 siblings, 1 reply; 2+ messages in thread
From: Daniel W. S. Almeida @ 2020-08-07  8:35 UTC (permalink / raw)
  To: linux-kernel
  Cc: skhan, Daniel W. S. Almeida, Mauro Carvalho Chehab, linux-media

From: "Daniel W. S. Almeida" <dwlsalmeida@gmail.com>

Fix the following coccinelle report:

drivers/media/dvb-frontends/lgdt3306a.c:718:5-8:
Unneeded variable: "ret". Return "0" on line 744

Code was enclosed with #if 0 and thus this variable was not needed.
Remove that code altogether.

Found using - Coccinelle (http://coccinelle.lip6.fr)

Signed-off-by: Daniel W. S. Almeida <dwlsalmeida@gmail.com>
---
 drivers/media/dvb-frontends/lgdt3306a.c | 27 +------------------------
 1 file changed, 1 insertion(+), 26 deletions(-)

diff --git a/drivers/media/dvb-frontends/lgdt3306a.c b/drivers/media/dvb-frontends/lgdt3306a.c
index d3c330e035c4..0247ef799546 100644
--- a/drivers/media/dvb-frontends/lgdt3306a.c
+++ b/drivers/media/dvb-frontends/lgdt3306a.c
@@ -715,33 +715,8 @@ static int lgdt3306a_spectral_inversion(struct lgdt3306a_state *state,
 				       struct dtv_frontend_properties *p,
 				       int inversion)
 {
-	int ret = 0;
-
 	dbg_info("(%d)\n", inversion);
-#if 0
-	/*
-	 * FGR - spectral_inversion defaults already set for VSB and QAM;
-	 * can enable later if desired
-	 */
-
-	ret = lgdt3306a_set_inversion(state, inversion);
-
-	switch (p->modulation) {
-	case VSB_8:
-		/* Manual only for VSB */
-		ret = lgdt3306a_set_inversion_auto(state, 0);
-		break;
-	case QAM_64:
-	case QAM_256:
-	case QAM_AUTO:
-		/* Auto ok for QAM */
-		ret = lgdt3306a_set_inversion_auto(state, 1);
-		break;
-	default:
-		ret = -EINVAL;
-	}
-#endif
-	return ret;
+	return 0;
 }
 
 static int lgdt3306a_set_if(struct lgdt3306a_state *state,
-- 
2.28.0


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

* Re: [PATCH 14/20] media: dvb-frontends: lgdt3306a.c: remove dead code
  2020-08-07  8:35 [PATCH 14/20] media: dvb-frontends: lgdt3306a.c: remove dead code Daniel W. S. Almeida
@ 2020-08-19 13:35 ` Hans Verkuil
  0 siblings, 0 replies; 2+ messages in thread
From: Hans Verkuil @ 2020-08-19 13:35 UTC (permalink / raw)
  To: Daniel W. S. Almeida, linux-kernel
  Cc: skhan, Mauro Carvalho Chehab, linux-media

On 07/08/2020 10:35, Daniel W. S. Almeida wrote:
> From: "Daniel W. S. Almeida" <dwlsalmeida@gmail.com>
> 
> Fix the following coccinelle report:
> 
> drivers/media/dvb-frontends/lgdt3306a.c:718:5-8:
> Unneeded variable: "ret". Return "0" on line 744
> 
> Code was enclosed with #if 0 and thus this variable was not needed.
> Remove that code altogether.
> 
> Found using - Coccinelle (http://coccinelle.lip6.fr)
> 
> Signed-off-by: Daniel W. S. Almeida <dwlsalmeida@gmail.com>
> ---
>  drivers/media/dvb-frontends/lgdt3306a.c | 27 +------------------------
>  1 file changed, 1 insertion(+), 26 deletions(-)
> 
> diff --git a/drivers/media/dvb-frontends/lgdt3306a.c b/drivers/media/dvb-frontends/lgdt3306a.c
> index d3c330e035c4..0247ef799546 100644
> --- a/drivers/media/dvb-frontends/lgdt3306a.c
> +++ b/drivers/media/dvb-frontends/lgdt3306a.c
> @@ -715,33 +715,8 @@ static int lgdt3306a_spectral_inversion(struct lgdt3306a_state *state,
>  				       struct dtv_frontend_properties *p,
>  				       int inversion)
>  {
> -	int ret = 0;
> -
>  	dbg_info("(%d)\n", inversion);
> -#if 0
> -	/*
> -	 * FGR - spectral_inversion defaults already set for VSB and QAM;
> -	 * can enable later if desired
> -	 */
> -
> -	ret = lgdt3306a_set_inversion(state, inversion);
> -
> -	switch (p->modulation) {
> -	case VSB_8:
> -		/* Manual only for VSB */
> -		ret = lgdt3306a_set_inversion_auto(state, 0);
> -		break;
> -	case QAM_64:
> -	case QAM_256:
> -	case QAM_AUTO:
> -		/* Auto ok for QAM */
> -		ret = lgdt3306a_set_inversion_auto(state, 1);
> -		break;
> -	default:
> -		ret = -EINVAL;
> -	}
> -#endif
> -	return ret;
> +	return 0;
>  }
>  
>  static int lgdt3306a_set_if(struct lgdt3306a_state *state,
> 

You can drop the lgdt3306a_spectral_inversion function completely
since the function doesn't do anything. It would be good to replace
the function call with the comment "spectral_inversion defaults already
set for VSB and QAM" so that information isn't lost.

Regards,

	Hans

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

end of thread, other threads:[~2020-08-19 13:36 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-07  8:35 [PATCH 14/20] media: dvb-frontends: lgdt3306a.c: remove dead code Daniel W. S. Almeida
2020-08-19 13:35 ` Hans Verkuil

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).