Also, final dot removed and single form fixed. The cause of #6428 is still to be found.
Signed-off-by: Alexey Dobriyan <[EMAIL PROTECTED]> --- 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; } - To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html