From patchwork Tue Sep 22 14:05:39 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alan Jenkins X-Patchwork-Id: 34079 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by ozlabs.org (Postfix) with ESMTP id E30D6B7B69 for ; Wed, 23 Sep 2009 00:06:31 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756638AbZIVOFl (ORCPT ); Tue, 22 Sep 2009 10:05:41 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1756593AbZIVOFl (ORCPT ); Tue, 22 Sep 2009 10:05:41 -0400 Received: from ey-out-2122.google.com ([74.125.78.24]:62493 "EHLO ey-out-2122.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755986AbZIVOFk (ORCPT ); Tue, 22 Sep 2009 10:05:40 -0400 Received: by ey-out-2122.google.com with SMTP id d26so600474eyd.19 for ; Tue, 22 Sep 2009 07:05:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:received:received:sender:message-id:date:from :user-agent:mime-version:to:cc:subject:content-type :content-transfer-encoding; bh=CWzVVhekHVOONhScR+blcjqLYP5oUyMZRr5gCLKgXSo=; b=Xrz4IDIsuTgOxTTrk1ciOpUt0DsLS2S5dvkErHpDAAbKfyKRRErsg0+RpyUtcXstfs AiW9NwmaQ26m6FTLcT4bLD7rFANIiV3zmSdEYOSFAyHcQ1wahBFrbGyI/J3tm0EduFCG 2PS3eAPX1Xfqmhb1aBOHYAYUyuQ+PabvyN7WY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=sender:message-id:date:from:user-agent:mime-version:to:cc:subject :content-type:content-transfer-encoding; b=XUeKt4TP9km4vcNxoxbhVNr1xvWkuGQq+wsUG31Iz+xo7ijNzCDPPbTxaSztDK8JtP sHi567wyrLw7BV/XAEeqB7x76oN/LawW8iXU9mpLqOf0QzAfA1ZwtPHMomNWLvmllyCE lMcrhrVgktfx39q52vf5bmy8tozy+/dv1bCcY= Received: by 10.210.2.17 with SMTP id 17mr1092940ebb.46.1253628343044; Tue, 22 Sep 2009 07:05:43 -0700 (PDT) Received: from ?192.168.0.5? ([86.53.68.233]) by mx.google.com with ESMTPS id 24sm771119eyx.4.2009.09.22.07.05.41 (version=SSLv3 cipher=RC4-MD5); Tue, 22 Sep 2009 07:05:42 -0700 (PDT) Message-ID: <4AB8D9B3.4010805@tuffmail.co.uk> Date: Tue, 22 Sep 2009 15:05:39 +0100 From: Alan Jenkins User-Agent: Thunderbird 2.0.0.21 (X11/20090318) MIME-Version: 1.0 To: davem@davemloft.net CC: netdev@vger.kernel.org, linux-kernel , Alexander Beregalov Subject: [PATCH] 8139cp: fix duplicate loglevel in module load message Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org This was introduced by b93d58 "8139*: convert printk() to pr_()": [ 2256252443 ] <6>8139cp: 10/100 PCI Ethernet driver v1.3 (Mar 22, 2004) The "version" string is printed using pr_info(), so it doesn't need to include a loglevel. Signed-off-by: Alan Jenkins CC: Alexander Beregalov --- drivers/net/8139cp.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/net/8139cp.c b/drivers/net/8139cp.c index d0dbbf3..6841a9a 100644 --- a/drivers/net/8139cp.c +++ b/drivers/net/8139cp.c @@ -87,7 +87,7 @@ /* These identify the driver base version and may not be removed. */ static char version[] = -KERN_INFO DRV_NAME ": 10/100 PCI Ethernet driver v" DRV_VERSION " (" DRV_RELDATE ")\n"; +DRV_NAME ": 10/100 PCI Ethernet driver v" DRV_VERSION " (" DRV_RELDATE ")\n"; MODULE_AUTHOR("Jeff Garzik "); MODULE_DESCRIPTION("RealTek RTL-8139C+ series 10/100 PCI Ethernet driver");