2005-04-19 21:42:30

by Jesper Juhl

[permalink] [raw]
Subject: [PATCH] sound: trivial warning fix for emu10k1

When building with gcc -W sound/pci/emu10k1/emupcm.c produces this little
warning in 2.6.12-rc2-mm3 :
sound/pci/emu10k1/emupcm.c:265: warning: `inline' is not at beginning of declaration
No big deal, but trivial to fix.


Signed-off-by: Jesper Juhl <[email protected]>
---

sound/pci/emu10k1/emupcm.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)

--- linux-2.6.12-rc2-mm3-orig/sound/pci/emu10k1/emupcm.c 2005-04-11 21:20:58.000000000 +0200
+++ linux-2.6.12-rc2-mm3/sound/pci/emu10k1/emupcm.c 2005-04-19 23:37:10.000000000 +0200
@@ -262,7 +262,7 @@ static unsigned int emu10k1_select_inter
*
* returns: cache invalidate size in samples
*/
-static int inline emu10k1_ccis(int stereo, int w_16)
+static inline int emu10k1_ccis(int stereo, int w_16)
{
if (w_16) {
return stereo ? 24 : 26;




---
PS. Please CC me on replies.



2005-04-20 09:04:06

by Takashi Iwai

[permalink] [raw]
Subject: Re: [Alsa-devel] [PATCH] sound: trivial warning fix for emu10k1

At Tue, 19 Apr 2005 23:45:16 +0200 (CEST),
Jesper Juhl wrote:
>
> When building with gcc -W sound/pci/emu10k1/emupcm.c produces this little
> warning in 2.6.12-rc2-mm3 :
> sound/pci/emu10k1/emupcm.c:265: warning: `inline' is not at beginning of declaration
> No big deal, but trivial to fix.
>
>
> Signed-off-by: Jesper Juhl <[email protected]>

Thanks, applied to ALSA tree now.


Takashi