From patchwork Tue Apr 17 01:01:33 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Randy.Dunlap" X-Patchwork-Id: 153000 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.180.67]) by ozlabs.org (Postfix) with ESMTP id 32B12B7033 for ; Tue, 17 Apr 2012 08:02:27 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755692Ab2DPWCF (ORCPT ); Mon, 16 Apr 2012 18:02:05 -0400 Received: from oproxy6-pub.bluehost.com ([67.222.54.6]:60196 "HELO oproxy6-pub.bluehost.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1755600Ab2DPWB3 (ORCPT ); Mon, 16 Apr 2012 18:01:29 -0400 Received: (qmail 2276 invoked by uid 0); 16 Apr 2012 22:01:28 -0000 Received: from unknown (HELO box742.bluehost.com) (66.147.244.242) by cpoproxy3.bluehost.com with SMTP; 16 Apr 2012 22:01:28 -0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=xenotime.net; s=default; h=Content-Transfer-Encoding:Content-Type:In-Reply-To:References:Subject:CC:To:MIME-Version:From:Date:Message-ID; bh=5oraBR15vzhfMm5ESoy5qrCjoWZYUsmAb1/npQV6GtY=; b=P06fS1esnIKTngfx7bGZjbp8Ix2KmSQYz2P/Ymwrxw89Xi6MJRW9n1D+8iHlJlMqw4gjTzvtEMRLSLfYzvpyf8846R+O1oPXVP5ya9artddKP6cQmBkGPLVLFY+d5LjK; Received: from static-50-53-38-135.bvtn.or.frontiernet.net ([50.53.38.135] helo=[192.168.1.4]) by box742.bluehost.com with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.76) (envelope-from ) id 1SJtzE-00050G-In; Mon, 16 Apr 2012 16:01:28 -0600 Message-ID: <4F8CC0ED.2000006@xenotime.net> Date: Mon, 16 Apr 2012 18:01:33 -0700 From: Randy Dunlap User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.15) Gecko/20110323 Thunderbird/3.1.9 MIME-Version: 1.0 To: Stephen Rothwell CC: linux-next@vger.kernel.org, LKML , netdev@vger.kernel.org, linux-hippi@sunsite.dk, Jes Sorensen , Andrew Morton Subject: [PATCH -next] hippi: fix printk format in rrunner.c References: <20120416161121.261ba4e7e38989173accfb16@canb.auug.org.au> In-Reply-To: <20120416161121.261ba4e7e38989173accfb16@canb.auug.org.au> X-Identified-User: {1807:box742.bluehost.com:xenotime:xenotime.net} {sentby:smtp auth 50.53.38.135 authed with rdunlap@xenotime.net} Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org From: Randy Dunlap Fix printk format warning (from i386 build): drivers/net/hippi/rrunner.c:146:9: warning: format '%08llx' expects type 'long long unsigned int', but argument 3 has type 'resource_size_t' Signed-off-by: Randy Dunlap Cc: Jes Sorensen Cc: linux-hippi@sunsite.dk --- drivers/net/hippi/rrunner.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- linux-next-20120416.orig/drivers/net/hippi/rrunner.c +++ linux-next-20120416/drivers/net/hippi/rrunner.c @@ -142,8 +142,9 @@ static int __devinit rr_init_one(struct pci_set_master(pdev); printk(KERN_INFO "%s: Essential RoadRunner serial HIPPI " - "at 0x%08llx, irq %i, PCI latency %i\n", dev->name, - pci_resource_start(pdev, 0), pdev->irq, pci_latency); + "at 0x%llx, irq %i, PCI latency %i\n", dev->name, + (unsigned long long)pci_resource_start(pdev, 0), + pdev->irq, pci_latency); /* * Remap the MMIO regs into kernel space.