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. - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/