aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2015-01-28 16:04:46 +0100
committerTakashi Iwai <tiwai@suse.de>2015-01-28 16:27:46 +0100
commit37419584abbb3abf3fae6b9eb6869f18c95f6a1d (patch)
tree88babd1e9f02492c0c9b693cafecbd961329eef6 /sound
parentMerge branch 'topic/line6' into for-next (diff)
downloadlinux-dev-37419584abbb3abf3fae6b9eb6869f18c95f6a1d.tar.xz
linux-dev-37419584abbb3abf3fae6b9eb6869f18c95f6a1d.zip
ALSA: sscape: add missing include of linux/io.h
The soundscape driver uses the ISA inb/outb functions declared in linux/io.h, so it needs to include this header to avoid a build error: sscape.c: In function 'sscape_write_unsafe': sscape.c:203:2: error: implicit declaration of function 'outb' [-Werror=implicit-function-declaration] Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r--sound/isa/sscape.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/isa/sscape.c b/sound/isa/sscape.c
index 018ab140c2be..7b248cdf06e2 100644
--- a/sound/isa/sscape.c
+++ b/sound/isa/sscape.c
@@ -23,6 +23,7 @@
#include <linux/init.h>
#include <linux/err.h>
+#include <linux/io.h>
#include <linux/isa.h>
#include <linux/delay.h>
#include <linux/firmware.h>