public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* remove references to dead urls from mtd nand code.
@ 2007-06-06  5:46 Dave Jones
  2007-06-06  7:59 ` David Woodhouse
  0 siblings, 1 reply; 3+ messages in thread
From: Dave Jones @ 2007-06-06  5:46 UTC (permalink / raw)
  To: dwmw2; +Cc: Linux Kernel

As reported in http://bugzilla.kernel.org/show_bug.cgi?id=7815
this URL 404's.  Unless they're coming back, we should probably
just remove them.

Signed-off-by: Dave Jones <davej@redhat.com>

diff --git a/drivers/mtd/nand/Kconfig b/drivers/mtd/nand/Kconfig
index f1d60b6..8f665bb 100644
--- a/drivers/mtd/nand/Kconfig
+++ b/drivers/mtd/nand/Kconfig
@@ -7,8 +7,7 @@ menuconfig MTD_NAND
 	select MTD_NAND_IDS
 	help
 	  This enables support for accessing all type of NAND flash
-	  devices. For further information see
-	  <http://www.linux-mtd.infradead.org/doc/nand.html>.
+	  devices.
 
 if MTD_NAND
 
diff --git a/drivers/mtd/nand/nand_base.c b/drivers/mtd/nand/nand_base.c
index 7e68203..3f406c7 100644
--- a/drivers/mtd/nand/nand_base.c
+++ b/drivers/mtd/nand/nand_base.c
@@ -6,9 +6,6 @@
  *   capable of working with almost all NAND chips currently available.
  *   Basic support for AG-AND chips is provided.
  *
- *	Additional technical information is available on
- *	http://www.linux-mtd.infradead.org/tech/nand.html
- *
  *  Copyright (C) 2000 Steven J. Hill (sjhill@realitydiluted.com)
  *		  2002-2006 Thomas Gleixner (tglx@linutronix.de)
  *
-- 
http://www.codemonkey.org.uk

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

* Re: remove references to dead urls from mtd nand code.
  2007-06-06  5:46 remove references to dead urls from mtd nand code Dave Jones
@ 2007-06-06  7:59 ` David Woodhouse
  2007-06-06 15:02   ` Dave Jones
  0 siblings, 1 reply; 3+ messages in thread
From: David Woodhouse @ 2007-06-06  7:59 UTC (permalink / raw)
  To: Dave Jones; +Cc: Linux Kernel

On Wed, 2007-06-06 at 01:46 -0400, Dave Jones wrote:
> As reported in http://bugzilla.kernel.org/show_bug.cgi?id=7815
> this URL 404's.  Unless they're coming back, we should probably
> just remove them.
> 
> Signed-off-by: Dave Jones <davej@redhat.com>
> 
> diff --git a/drivers/mtd/nand/Kconfig b/drivers/mtd/nand/Kconfig
> index f1d60b6..8f665bb 100644
> --- a/drivers/mtd/nand/Kconfig
> +++ b/drivers/mtd/nand/Kconfig
> @@ -7,8 +7,7 @@ menuconfig MTD_NAND
>  	select MTD_NAND_IDS
>  	help
>  	  This enables support for accessing all type of NAND flash
> -	  devices. For further information see
> -	  <http://www.linux-mtd.infradead.org/doc/nand.html>.

That one doesn't 404.

> +	  devices.
>  
>  if MTD_NAND
>  
> diff --git a/drivers/mtd/nand/nand_base.c b/drivers/mtd/nand/nand_base.c
> index 7e68203..3f406c7 100644
> --- a/drivers/mtd/nand/nand_base.c
> +++ b/drivers/mtd/nand/nand_base.c
> @@ -6,9 +6,6 @@
>   *   capable of working with almost all NAND chips currently available.
>   *   Basic support for AG-AND chips is provided.
>   *
> - *	Additional technical information is available on
> - *	http://www.linux-mtd.infradead.org/tech/nand.html

And that one should be changed to match the working one (and possibly be
enclosed in <...> too for consistency, although I've never been very
fond of that convention.

-- 
dwmw2


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

* Re: remove references to dead urls from mtd nand code.
  2007-06-06  7:59 ` David Woodhouse
@ 2007-06-06 15:02   ` Dave Jones
  0 siblings, 0 replies; 3+ messages in thread
From: Dave Jones @ 2007-06-06 15:02 UTC (permalink / raw)
  To: David Woodhouse; +Cc: Linux Kernel

On Wed, Jun 06, 2007 at 08:59:48AM +0100, David Woodhouse wrote:

 > > - *	Additional technical information is available on
 > > - *	http://www.linux-mtd.infradead.org/tech/nand.html
 > 
 > And that one should be changed to match the working one (and possibly be
 > enclosed in <...> too for consistency, although I've never been very
 > fond of that convention.

Me either, lets keep it the way it is.

As reported in http://bugzilla.kernel.org/show_bug.cgi?id=7815
this URL 404's.  Fix it to point at the correct place.

Signed-off-by: Dave Jones <davej@redhat.com>

diff --git a/drivers/mtd/nand/nand_base.c b/drivers/mtd/nand/nand_base.c
index 7e68203..6ede757 100644
--- a/drivers/mtd/nand/nand_base.c
+++ b/drivers/mtd/nand/nand_base.c
@@ -7,7 +7,7 @@
  *   Basic support for AG-AND chips is provided.
  *
  *	Additional technical information is available on
- *	http://www.linux-mtd.infradead.org/tech/nand.html
+ *	http://www.linux-mtd.infradead.org/doc/nand.html
  *
  *  Copyright (C) 2000 Steven J. Hill (sjhill@realitydiluted.com)
  *		  2002-2006 Thomas Gleixner (tglx@linutronix.de)


-- 
http://www.codemonkey.org.uk

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

end of thread, other threads:[~2007-06-06 15:02 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-06-06  5:46 remove references to dead urls from mtd nand code Dave Jones
2007-06-06  7:59 ` David Woodhouse
2007-06-06 15:02   ` Dave Jones

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