From: "J . A . Magallon" <jamagallon@able.es>
To: Alan Cox <alan@lxorguk.ukuu.org.uk>
Cc: linux-kernel@vger.kernel.org
Subject: Re: Linux 2.2.19pre6
Date: Wed, 3 Jan 2001 21:55:41 +0100 [thread overview]
Message-ID: <20010103215541.A743@werewolf.able.es> (raw)
In-Reply-To: <E14DsXi-0004Mt-00@the-village.bc.nu>
In-Reply-To: <E14DsXi-0004Mt-00@the-village.bc.nu>; from alan@lxorguk.ukuu.org.uk on Wed, Jan 03, 2001 at 19:21:43 +0100
On 2001.01.03 Alan Cox wrote:
>
> 2.2.19pre6
> o Yamaha PCI sound updates (Pete Zaitcev)
> o Alpha SMP ASN reuse races (Andrea Arcangeli)
> o Alpha bottom half SMP race fixes (Andrea Arcangeli)
> o Alpha SMP read_unloc race fix (Andrea
> Arcangeli)
> o Show registers across CPUs on SMP alpha death (Andrea
> Arcangeli)
> o Print the 8K of stack not the top 4K on x86 (Andrea Arcangeli)
> o Dcache aging (Andrea Arcangeli)
> o Kill unused parameter in free_inode_memory (Andrea Arcangeli)
>
Please apply this patchlet, corrects some ugly KERN_INFOs in ne2k-pci.
--- linux-2.2.19-pre6/drivers/net/ne2k-pci.c.org Wed Jan 3 21:06:16 2001
+++ linux-2.2.19-pre6/drivers/net/ne2k-pci.c Wed Jan 3 21:15:57 2001
@@ -33,10 +33,9 @@
*/
/* These identify the driver base version and may not be removed. */
-static const char version1[] =
-"ne2k-pci.c:v1.02 10/19/2000 D. Becker/P. Gortmaker\n";
-static const char version2[] =
-" http://www.scyld.com/network/ne2k-pci.html\n";
+static const char* version =
+"ne2k-pci.c: v1.02 for Linux 2.2, 10/19/2000, D. Becker/P. Gortmaker,"
+" http://www.scyld.com/network/ne2k-pci.html";
#include <linux/module.h>
#include <linux/kernel.h>
@@ -159,8 +158,7 @@
init_module(void)
{
/* We must emit version information. */
- if (debug)
- printk(KERN_INFO "%s" KERN_INFO "%s", version1, version2);
+ printk(KERN_INFO "%s\n", version);
if (ne2k_pci_probe(0)) {
printk(KERN_NOTICE "ne2k-pci.c: No useable cards found, driver
NOT installed.\n");
@@ -243,7 +241,7 @@
{
static unsigned version_printed = 0;
if (version_printed++ == 0)
- printk(KERN_INFO "%s %s", version1, version2);
+ printk(KERN_INFO "%s\n", version);
}
#endif
--
J.A. Magallon $> cd pub
mailto:jamagallon@able.es $> more beer
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/
prev parent reply other threads:[~2001-01-03 20:56 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2001-01-03 18:21 Linux 2.2.19pre6 Alan Cox
2001-01-03 20:55 ` J . A . Magallon [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20010103215541.A743@werewolf.able.es \
--to=jamagallon@able.es \
--cc=alan@lxorguk.ukuu.org.uk \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.