---------------------
PatchSet 3129 
Date: 2005/04/20 10:03:31
Author: tiwai
Branch: HEAD
Tag: (none) 
Log:
Summary: 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 <juhl-lkml@dif.dk>

Members: 
	pci/emu10k1/emupcm.c:1.46->1.47 

Index: /sound/pci/emu10k1/emupcm.c
diff -u /sound/pci/emu10k1/emupcm.c.old /sound/pci/emu10k1/emupcm.c
--- /sound/pci/emu10k1/emupcm.c.old	Wed Mar 23 09:01:31 2005
+++ /sound/pci/emu10k1/emupcm.c	Wed Apr 20 02:03:31 2005
@@ -262,7 +262,7 @@
  *
  * 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;