* [2.6 patch] net/seeq8005.c: small cleanups (fwd)
@ 2004-08-09 21:51 Adrian Bunk
2004-08-11 18:25 ` Jeff Garzik
0 siblings, 1 reply; 3+ messages in thread
From: Adrian Bunk @ 2004-08-09 21:51 UTC (permalink / raw)
To: jgarzik; +Cc: linux-net, linux-kernel
The trivial patch forwarded below still applies and compiles against
2.6.8-rc3-mm2.
Please apply.
----- Forwarded message from Adrian Bunk <bunk@fs.tum.de> -----
Date: Fri, 16 Jul 2004 00:17:42 +0200
From: Adrian Bunk <bunk@fs.tum.de>
To: hamish@zot.apana.org.au
Cc: jgarzik@pobox.com, linux-net@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: [2.6 patch] net/seeq8005.c: small cleanups
The patch below does the following small cleanups in seeq8005.c:
- kill ancient version variable
- remove Emacs settings
diffstat output:
drivers/net/seeq8005.c | 18 ------------------
1 files changed, 18 deletions(-)
Signed-off-by: Adrian Bunk <bunk@fs.tum.de>
--- linux-2.6.8-rc1-mm1-full-3.4/drivers/net/seeq8005.c.old 2004-07-16 00:08:55.000000000 +0200
+++ linux-2.6.8-rc1-mm1-full-3.4/drivers/net/seeq8005.c 2004-07-16 00:09:28.000000000 +0200
@@ -12,12 +12,7 @@
This file is a network device driver for the SEEQ 8005 chipset and
the Linux operating system.
-*/
-
-static const char version[] =
- "seeq8005.c:v1.00 8/07/95 Hamish Coleman (hamish@zot.apana.org.au)\n";
-/*
Sources:
SEEQ 8005 databook
@@ -150,7 +145,6 @@
static int __init seeq8005_probe1(struct net_device *dev, int ioaddr)
{
- static unsigned version_printed;
int i,j;
unsigned char SA_prom[32];
int old_cfg1;
@@ -291,9 +285,6 @@
}
#endif
- if (net_debug && version_printed++ == 0)
- printk(version);
-
printk("%s: %s found at %#3x, ", dev->name, "seeq8005", ioaddr);
/* Fill in the 'dev' fields. */
@@ -757,12 +748,3 @@
}
#endif /* MODULE */
-\f
-/*
- * Local variables:
- * compile-command: "gcc -D__KERNEL__ -I/usr/src/linux/net/inet -Wall -Wstrict-prototypes -O6 -m486 -c skeleton.c"
- * version-control: t
- * kept-new-versions: 5
- * tab-width: 4
- * End:
- */
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
----- End forwarded message -----
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [2.6 patch] net/seeq8005.c: small cleanups (fwd)
2004-08-09 21:51 [2.6 patch] net/seeq8005.c: small cleanups (fwd) Adrian Bunk
@ 2004-08-11 18:25 ` Jeff Garzik
2004-08-11 19:21 ` Adrian Bunk
0 siblings, 1 reply; 3+ messages in thread
From: Jeff Garzik @ 2004-08-11 18:25 UTC (permalink / raw)
To: Adrian Bunk; +Cc: linux-net, linux-kernel
Adrian Bunk wrote:
> The trivial patch forwarded below still applies and compiles against
> 2.6.8-rc3-mm2.
>
> Please apply.
>
>
> ----- Forwarded message from Adrian Bunk <bunk@fs.tum.de> -----
>
> Date: Fri, 16 Jul 2004 00:17:42 +0200
> From: Adrian Bunk <bunk@fs.tum.de>
> To: hamish@zot.apana.org.au
> Cc: jgarzik@pobox.com, linux-net@vger.kernel.org,
> linux-kernel@vger.kernel.org
> Subject: [2.6 patch] net/seeq8005.c: small cleanups
>
> The patch below does the following small cleanups in seeq8005.c:
> - kill ancient version variable
> - remove Emacs settings
>
>
> diffstat output:
> drivers/net/seeq8005.c | 18 ------------------
> 1 files changed, 18 deletions(-)
>
>
> Signed-off-by: Adrian Bunk <bunk@fs.tum.de>
>
> --- linux-2.6.8-rc1-mm1-full-3.4/drivers/net/seeq8005.c.old 2004-07-16 00:08:55.000000000 +0200
> +++ linux-2.6.8-rc1-mm1-full-3.4/drivers/net/seeq8005.c 2004-07-16 00:09:28.000000000 +0200
> @@ -12,12 +12,7 @@
> This file is a network device driver for the SEEQ 8005 chipset and
> the Linux operating system.
>
> -*/
> -
> -static const char version[] =
> - "seeq8005.c:v1.00 8/07/95 Hamish Coleman (hamish@zot.apana.org.au)\n";
>
> -/*
> Sources:
> SEEQ 8005 databook
>
> @@ -150,7 +145,6 @@
>
> static int __init seeq8005_probe1(struct net_device *dev, int ioaddr)
> {
> - static unsigned version_printed;
> int i,j;
> unsigned char SA_prom[32];
> int old_cfg1;
> @@ -291,9 +285,6 @@
> }
> #endif
>
> - if (net_debug && version_printed++ == 0)
> - printk(version);
> -
This "small cleanup" appears to kill useful and working code.
Jeff
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [2.6 patch] net/seeq8005.c: small cleanups (fwd)
2004-08-11 18:25 ` Jeff Garzik
@ 2004-08-11 19:21 ` Adrian Bunk
0 siblings, 0 replies; 3+ messages in thread
From: Adrian Bunk @ 2004-08-11 19:21 UTC (permalink / raw)
To: Jeff Garzik; +Cc: linux-net, linux-kernel
On Wed, Aug 11, 2004 at 02:25:46PM -0400, Jeff Garzik wrote:
>...
> >-static const char version[] =
> >- "seeq8005.c:v1.00 8/07/95 Hamish Coleman
> >(hamish@zot.apana.org.au)\n";
>...
> >- if (net_debug && version_printed++ == 0)
> >- printk(version);
>...
> This "small cleanup" appears to kill useful and working code.
I'd agree if this was a version number that was regularly updated.
But when is a 9 year old version tag useful?
> Jeff
cu
Adrian
--
"Is there not promise of rain?" Ling Tan asked suddenly out
of the darkness. There had been need of rain for many days.
"Only a promise," Lao Er said.
Pearl S. Buck - Dragon Seed
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2004-08-11 19:22 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-08-09 21:51 [2.6 patch] net/seeq8005.c: small cleanups (fwd) Adrian Bunk
2004-08-11 18:25 ` Jeff Garzik
2004-08-11 19:21 ` Adrian Bunk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox