netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] pcnet32: fix user visible typo
@ 2006-08-28 23:32 Alexey Dobriyan
  2006-08-28 23:51 ` Don Fry
  0 siblings, 1 reply; 3+ messages in thread
From: Alexey Dobriyan @ 2006-08-28 23:32 UTC (permalink / raw)
  To: netdev; +Cc: tsbogend

Also, final dot removed and single form fixed. The cause of #6428 is
still to be found.

Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
---

 drivers/net/pcnet32.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

--- a/drivers/net/pcnet32.c
+++ b/drivers/net/pcnet32.c
@@ -2986,7 +2986,8 @@ static int __init pcnet32_init_module(vo
 		pcnet32_probe_vlbus(pcnet32_portlist);
 
 	if (cards_found && (pcnet32_debug & NETIF_MSG_PROBE))
-		printk(KERN_INFO PFX "%d cards_found.\n", cards_found);
+		printk(KERN_INFO PFX "%d card%s found\n",
+			cards_found, cards_found > 1 ? "s" : "");
 
 	return (pcnet32_have_pci + cards_found) ? 0 : -ENODEV;
 }


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

end of thread, other threads:[~2006-08-29 15:37 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-08-28 23:32 [PATCH] pcnet32: fix user visible typo Alexey Dobriyan
2006-08-28 23:51 ` Don Fry
2006-08-29 15:37   ` Don Fry

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