public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] staging: olpc_dcon: remove noinit module variable
@ 2011-07-22  3:37 Andres Salomon
  2011-08-18 22:27 ` Andres Salomon
  0 siblings, 1 reply; 3+ messages in thread
From: Andres Salomon @ 2011-07-22  3:37 UTC (permalink / raw)
  To: gregkh; +Cc: linux-kernel, cjb, jon.nettleton, devel

This came from Jordan's original 2007 gxfb_dcon commit.  I've never
seen or heard of it actually being used.  Presumably it was once
useful for skipping hardware initialization when reloading the module
over and over during driver development..

Signed-off-by: Andres Salomon <dilinger@queued.net>
---
 drivers/staging/olpc_dcon/olpc_dcon.c |    7 ++-----
 1 files changed, 2 insertions(+), 5 deletions(-)

diff --git a/drivers/staging/olpc_dcon/olpc_dcon.c b/drivers/staging/olpc_dcon/olpc_dcon.c
index 750fe50..cf4b454 100644
--- a/drivers/staging/olpc_dcon/olpc_dcon.c
+++ b/drivers/staging/olpc_dcon/olpc_dcon.c
@@ -36,9 +36,6 @@
 static int resumeline = 898;
 module_param(resumeline, int, 0444);
 
-static int noinit;
-module_param(noinit, int, 0444);
-
 /* Default off since it doesn't work on DCON ASIC in B-test OLPC board */
 static int useaa = 1;
 module_param(useaa, int, 0444);
@@ -90,7 +87,7 @@ static int dcon_hw_init(struct dcon_priv *dcon, int is_init)
 		}
 	}
 
-	if (ver < 0xdc02 && !noinit) {
+	if (ver < 0xdc02) {
 		/* Initialize the DCON registers */
 
 		/* Start with work-arounds for DCON ASIC */
@@ -106,7 +103,7 @@ static int dcon_hw_init(struct dcon_priv *dcon, int is_init)
 		i2c_smbus_write_word_data(client, 0x3b, 0x002b);
 		i2c_smbus_write_word_data(client, 0x41, 0x0101);
 		i2c_smbus_write_word_data(client, 0x42, 0x0101);
-	} else if (!noinit) {
+	} else {
 		/* SDRAM setup/hold time */
 		i2c_smbus_write_word_data(client, 0x3a, 0xc040);
 		i2c_smbus_write_word_data(client, 0x41, 0x0000);
-- 
1.7.2.5


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

* Re: [PATCH 1/3] staging: olpc_dcon: remove noinit module variable
  2011-07-22  3:37 [PATCH 1/3] staging: olpc_dcon: remove noinit module variable Andres Salomon
@ 2011-08-18 22:27 ` Andres Salomon
  2011-08-18 23:14   ` Greg KH
  0 siblings, 1 reply; 3+ messages in thread
From: Andres Salomon @ 2011-08-18 22:27 UTC (permalink / raw)
  To: gregkh; +Cc: linux-kernel, cjb, jon.nettleton, devel

Hi Greg,

Did you see these?  I haven't seen any emails about them being merged
into the staging tree yet..


On Thu, 21 Jul 2011
20:37:43 -0700 Andres Salomon <dilinger@queued.net> wrote:

> This came from Jordan's original 2007 gxfb_dcon commit.  I've never
> seen or heard of it actually being used.  Presumably it was once
> useful for skipping hardware initialization when reloading the module
> over and over during driver development..
> 
> Signed-off-by: Andres Salomon <dilinger@queued.net>
> ---
>  drivers/staging/olpc_dcon/olpc_dcon.c |    7 ++-----
>  1 files changed, 2 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/staging/olpc_dcon/olpc_dcon.c
> b/drivers/staging/olpc_dcon/olpc_dcon.c index 750fe50..cf4b454 100644
> --- a/drivers/staging/olpc_dcon/olpc_dcon.c
> +++ b/drivers/staging/olpc_dcon/olpc_dcon.c
> @@ -36,9 +36,6 @@
>  static int resumeline = 898;
>  module_param(resumeline, int, 0444);
>  
> -static int noinit;
> -module_param(noinit, int, 0444);
> -
>  /* Default off since it doesn't work on DCON ASIC in B-test OLPC
> board */ static int useaa = 1;
>  module_param(useaa, int, 0444);
> @@ -90,7 +87,7 @@ static int dcon_hw_init(struct dcon_priv *dcon, int
> is_init) }
>  	}
>  
> -	if (ver < 0xdc02 && !noinit) {
> +	if (ver < 0xdc02) {
>  		/* Initialize the DCON registers */
>  
>  		/* Start with work-arounds for DCON ASIC */
> @@ -106,7 +103,7 @@ static int dcon_hw_init(struct dcon_priv *dcon,
> int is_init) i2c_smbus_write_word_data(client, 0x3b, 0x002b);
>  		i2c_smbus_write_word_data(client, 0x41, 0x0101);
>  		i2c_smbus_write_word_data(client, 0x42, 0x0101);
> -	} else if (!noinit) {
> +	} else {
>  		/* SDRAM setup/hold time */
>  		i2c_smbus_write_word_data(client, 0x3a, 0xc040);
>  		i2c_smbus_write_word_data(client, 0x41, 0x0000);


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

* Re: [PATCH 1/3] staging: olpc_dcon: remove noinit module variable
  2011-08-18 22:27 ` Andres Salomon
@ 2011-08-18 23:14   ` Greg KH
  0 siblings, 0 replies; 3+ messages in thread
From: Greg KH @ 2011-08-18 23:14 UTC (permalink / raw)
  To: Andres Salomon; +Cc: linux-kernel, cjb, jon.nettleton, devel

On Thu, Aug 18, 2011 at 03:27:50PM -0700, Andres Salomon wrote:
> Hi Greg,
> 
> Did you see these?  I haven't seen any emails about them being merged
> into the staging tree yet..

Yes, sorry, lots of travel, merge windows, and conferences.  I'll get to
these next week when I return from LinuxCon.

thanks for your patience,

greg k-h

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

end of thread, other threads:[~2011-08-18 23:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-22  3:37 [PATCH 1/3] staging: olpc_dcon: remove noinit module variable Andres Salomon
2011-08-18 22:27 ` Andres Salomon
2011-08-18 23:14   ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox