From: Daniel Glöckner Date: Tue, 30 Nov 2010 00:00:17 +0000 (+0100) Subject: s6000-pcm: fix compilation X-Git-Tag: v2.6.37-rc5~11^2^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9e4ea718d3c53f9f2a65ddddf95ffd7743be458e;p=platform%2Fkernel%2Flinux-3.10.git s6000-pcm: fix compilation s6000_soc_platform has lost its forward declaration and there no longer is a name element in it, so use a string constant when calling request_irq. Signed-off-by: Daniel Glöckner Acked-by: Liam Girdwood Signed-off-by: Mark Brown --- diff --git a/sound/soc/s6000/s6000-pcm.c b/sound/soc/s6000/s6000-pcm.c index 271fd22..ab3ccae 100644 --- a/sound/soc/s6000/s6000-pcm.c +++ b/sound/soc/s6000/s6000-pcm.c @@ -473,7 +473,7 @@ static int s6000_pcm_new(struct snd_card *card, } res = request_irq(params->irq, s6000_pcm_irq, IRQF_SHARED, - s6000_soc_platform.name, pcm); + "s6000-audio", pcm); if (res) { printk(KERN_ERR "s6000-pcm couldn't get IRQ\n"); return res;