[PATCH] m68k: compile fixes for dmasound (static vs. extern)
authorAl Viro <viro@ftp.linux.org.uk>
Thu, 12 Jan 2006 09:06:23 +0000 (01:06 -0800)
committerLinus Torvalds <torvalds@g5.osdl.org>
Thu, 12 Jan 2006 17:09:02 +0000 (09:09 -0800)
commit9a4729118c8851bce709a00eba1b3a8f1fd9ed58
tree5941c25f7fb53ad4d607a9449db693c6f95bf40f
parent3756513d5fdc7b4ba814419165afcd10c6b1618d
[PATCH] m68k: compile fixes for dmasound (static vs. extern)

sound/oss/dmasound/dmasound_atari.c has static expand_bal
sound/oss/dmasound/dmasound_q40.c has static expand_bal
sound/oss/dmasound/dmasound_awacs.c has non-static expand_bal
sound/oss/dmasound/trans_16.c uses expand_bal from dmasound_awacs.c
all 4 include dmasound.h; extern for expand_bal used to be there,
which is a bloody bad idea, considering _atari and _q40.  Moved the
extern to trans_16.c.

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Cc: Roman Zippel <zippel@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
sound/oss/dmasound/dmasound.h
sound/oss/dmasound/trans_16.c