[PATCH] 64bit resource: fix up printks for resources in sound drivers
This is needed if we wish to change the size of the resource structures. Based on an original patch from Vivek Goyal <vgoyal@in.ibm.com> Cc: Vivek Goyal <vgoyal@in.ibm.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
@ -611,10 +611,10 @@ static int __devinit snd_interwave_pnp(int dev, struct snd_interwave *iwcard,
|
||||
if (dma2[dev] >= 0)
|
||||
dma2[dev] = pnp_dma(pdev, 1);
|
||||
irq[dev] = pnp_irq(pdev, 0);
|
||||
snd_printdd("isapnp IW: sb port=0x%lx, gf1 port=0x%lx, codec port=0x%lx\n",
|
||||
pnp_port_start(pdev, 0),
|
||||
pnp_port_start(pdev, 1),
|
||||
pnp_port_start(pdev, 2));
|
||||
snd_printdd("isapnp IW: sb port=0x%llx, gf1 port=0x%llx, codec port=0x%llx\n",
|
||||
(unsigned long long)pnp_port_start(pdev, 0),
|
||||
(unsigned long long)pnp_port_start(pdev, 1),
|
||||
(unsigned long long)pnp_port_start(pdev, 2));
|
||||
snd_printdd("isapnp IW: dma1=%i, dma2=%i, irq=%i\n", dma1[dev], dma2[dev], irq[dev]);
|
||||
#ifdef SNDRV_STB
|
||||
/* Tone Control initialization */
|
||||
|
Reference in New Issue
Block a user