From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932114AbWFHKXV (ORCPT ); Thu, 8 Jun 2006 06:23:21 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S932116AbWFHKXV (ORCPT ); Thu, 8 Jun 2006 06:23:21 -0400 Received: from cantor2.suse.de ([195.135.220.15]:65417 "EHLO mx2.suse.de") by vger.kernel.org with ESMTP id S932114AbWFHKXU (ORCPT ); Thu, 8 Jun 2006 06:23:20 -0400 Date: Thu, 08 Jun 2006 12:23:19 +0200 Message-ID: From: Takashi Iwai To: "Randy.Dunlap" Cc: lkml , akpm Subject: Re: [PATCH] sound/vxpocket: fix printk warning In-Reply-To: <20060607212217.911bd60a.rdunlap@xenotime.net> References: <20060607212217.911bd60a.rdunlap@xenotime.net> User-Agent: Wanderlust/2.12.0 (Your Wildest Dreams) SEMI/1.14.6 (Maruoka) FLIM/1.14.7 (=?ISO-8859-4?Q?Sanj=F2?=) APEL/10.6 MULE XEmacs/21.5 (beta25) (eggplant) (+CVS-20060326) (i386-suse-linux) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org At Wed, 7 Jun 2006 21:22:17 -0700, Randy.Dunlap wrote: > > From: Randy Dunlap > > Fix printk format warning: > sound/pcmcia/vx/vxp_ops.c:205: warning: format '%x' expects type 'unsigned int', but argument 5 has type 'size_t' > > Signed-off-by: Randy Dunlap Thanks, added to ALSA tree now. Takashi > --- > sound/pcmcia/vx/vxp_ops.c | 2 +- > 1 files changed, 1 insertion(+), 1 deletion(-) > > --- linux-2617-rc6.orig/sound/pcmcia/vx/vxp_ops.c > +++ linux-2617-rc6/sound/pcmcia/vx/vxp_ops.c > @@ -202,7 +202,7 @@ static int vxp_load_xilinx_binary(struct > c |= (int)vx_inb(chip, RXM) << 8; > c |= vx_inb(chip, RXL); > > - snd_printdd(KERN_DEBUG "xilinx: dsp size received 0x%x, orig 0x%x\n", c, fw->size); > + snd_printdd(KERN_DEBUG "xilinx: dsp size received 0x%x, orig 0x%Zx\n", c, fw->size); > > vx_outb(chip, ICR, ICR_HF0); > > > --- >